diff --git a/grammar.js b/grammar.js index 58d21e6e..80b88e5d 100644 --- a/grammar.js +++ b/grammar.js @@ -63,6 +63,7 @@ module.exports = grammar({ [$.primary_expression, $.statement_block, 'object'], [$.import_statement, $.import], [$.export_statement, $.primary_expression], + [$.export_clause, $.object], ], conflicts: $ => [ @@ -79,6 +80,9 @@ module.exports = grammar({ [$.assignment_expression, $.object_assignment_pattern], [$.labeled_statement, $._property_name], [$.computed_property_name, $.array], + [$.export_clause, $.object, $.object_pattern], + [$._import_export_specifier, $.object, $.object_pattern], + [$.export_statement, $._property_name], ], word: $ => $.identifier, @@ -107,10 +111,10 @@ module.exports = grammar({ seq( repeat(field('decorator', $.decorator)), 'export', + optional('default'), choice( field('declaration', $.declaration), seq( - 'default', field('value', $.expression), $._semicolon ) diff --git a/src/grammar.json b/src/grammar.json index dbbe3fea..604e6a27 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -112,6 +112,18 @@ "type": "STRING", "value": "export" }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -126,10 +138,6 @@ { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "default" - }, { "type": "FIELD", "name": "value", @@ -6244,6 +6252,20 @@ [ "computed_property_name", "array" + ], + [ + "export_clause", + "object", + "object_pattern" + ], + [ + "_import_export_specifier", + "object", + "object_pattern" + ], + [ + "export_statement", + "_property_name" ] ], "precedences": [ @@ -6398,6 +6420,16 @@ "type": "SYMBOL", "name": "primary_expression" } + ], + [ + { + "type": "SYMBOL", + "name": "export_clause" + }, + { + "type": "SYMBOL", + "name": "object" + } ] ], "externals": [ diff --git a/src/node-types.json b/src/node-types.json index fdd2ace2..15384a31 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -684,6 +684,14 @@ { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true } ] } @@ -1804,6 +1812,14 @@ { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true } ] }, diff --git a/src/parser.c b/src/parser.c index 50462092..9b6ca5b4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1356 -#define LARGE_STATE_COUNT 207 +#define STATE_COUNT 1309 +#define LARGE_STATE_COUNT 208 #define SYMBOL_COUNT 241 #define ALIAS_COUNT 5 #define TOKEN_COUNT 124 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 94 +#define PRODUCTION_ID_COUNT 97 enum { sym_identifier = 1, @@ -1840,84 +1840,87 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [11] = {.index = 11, .length = 2}, [12] = {.index = 13, .length = 2}, [13] = {.index = 15, .length = 1}, - [14] = {.index = 16, .length = 2}, - [15] = {.index = 18, .length = 2}, - [18] = {.index = 20, .length = 1}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 2}, - [21] = {.index = 25, .length = 2}, - [22] = {.index = 27, .length = 3}, - [23] = {.index = 30, .length = 2}, - [24] = {.index = 32, .length = 2}, - [25] = {.index = 34, .length = 2}, - [26] = {.index = 36, .length = 2}, - [27] = {.index = 38, .length = 1}, - [28] = {.index = 39, .length = 1}, + [14] = {.index = 16, .length = 1}, + [15] = {.index = 17, .length = 2}, + [16] = {.index = 19, .length = 2}, + [17] = {.index = 21, .length = 1}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 2}, + [23] = {.index = 27, .length = 2}, + [24] = {.index = 29, .length = 3}, + [25] = {.index = 32, .length = 2}, + [26] = {.index = 34, .length = 2}, + [27] = {.index = 36, .length = 2}, + [28] = {.index = 38, .length = 2}, [29] = {.index = 40, .length = 1}, [30] = {.index = 41, .length = 1}, [31] = {.index = 42, .length = 1}, [32] = {.index = 43, .length = 1}, - [33] = {.index = 44, .length = 2}, - [34] = {.index = 46, .length = 1}, - [35] = {.index = 47, .length = 2}, - [36] = {.index = 49, .length = 2}, - [37] = {.index = 16, .length = 2}, - [38] = {.index = 18, .length = 2}, - [39] = {.index = 51, .length = 3}, - [40] = {.index = 54, .length = 2}, - [41] = {.index = 56, .length = 2}, - [42] = {.index = 58, .length = 2}, - [43] = {.index = 60, .length = 2}, - [44] = {.index = 62, .length = 2}, - [45] = {.index = 64, .length = 2}, - [46] = {.index = 66, .length = 1}, - [47] = {.index = 67, .length = 1}, - [48] = {.index = 68, .length = 2}, - [49] = {.index = 16, .length = 2}, + [33] = {.index = 44, .length = 1}, + [34] = {.index = 45, .length = 1}, + [35] = {.index = 46, .length = 2}, + [36] = {.index = 48, .length = 1}, + [37] = {.index = 49, .length = 2}, + [38] = {.index = 51, .length = 2}, + [39] = {.index = 17, .length = 2}, + [40] = {.index = 19, .length = 2}, + [41] = {.index = 53, .length = 3}, + [42] = {.index = 56, .length = 2}, + [43] = {.index = 58, .length = 2}, + [44] = {.index = 60, .length = 2}, + [45] = {.index = 62, .length = 2}, + [46] = {.index = 64, .length = 2}, + [47] = {.index = 66, .length = 2}, + [48] = {.index = 68, .length = 1}, + [49] = {.index = 69, .length = 1}, [50] = {.index = 70, .length = 2}, - [51] = {.index = 72, .length = 3}, - [52] = {.index = 68, .length = 2}, - [53] = {.index = 75, .length = 1}, - [54] = {.index = 76, .length = 3}, - [55] = {.index = 79, .length = 3}, - [56] = {.index = 82, .length = 3}, - [57] = {.index = 85, .length = 2}, - [58] = {.index = 87, .length = 2}, - [59] = {.index = 89, .length = 2}, - [60] = {.index = 91, .length = 1}, - [61] = {.index = 92, .length = 2}, - [62] = {.index = 94, .length = 1}, - [63] = {.index = 95, .length = 2}, - [64] = {.index = 97, .length = 2}, - [65] = {.index = 99, .length = 2}, - [66] = {.index = 101, .length = 2}, - [67] = {.index = 99, .length = 2}, - [68] = {.index = 103, .length = 2}, - [69] = {.index = 105, .length = 3}, - [70] = {.index = 108, .length = 2}, - [71] = {.index = 110, .length = 3}, - [72] = {.index = 113, .length = 2}, - [73] = {.index = 115, .length = 2}, - [74] = {.index = 117, .length = 4}, - [75] = {.index = 121, .length = 2}, - [76] = {.index = 123, .length = 2}, - [77] = {.index = 125, .length = 2}, - [78] = {.index = 127, .length = 3}, - [79] = {.index = 130, .length = 2}, - [80] = {.index = 132, .length = 3}, - [81] = {.index = 135, .length = 1}, - [82] = {.index = 136, .length = 2}, - [83] = {.index = 138, .length = 3}, - [84] = {.index = 141, .length = 4}, - [85] = {.index = 145, .length = 2}, - [86] = {.index = 145, .length = 2}, - [87] = {.index = 147, .length = 3}, - [88] = {.index = 150, .length = 3}, - [89] = {.index = 153, .length = 4}, - [90] = {.index = 157, .length = 2}, - [91] = {.index = 159, .length = 4}, - [92] = {.index = 163, .length = 2}, - [93] = {.index = 165, .length = 4}, + [51] = {.index = 17, .length = 2}, + [52] = {.index = 72, .length = 2}, + [53] = {.index = 74, .length = 3}, + [54] = {.index = 70, .length = 2}, + [55] = {.index = 77, .length = 3}, + [56] = {.index = 80, .length = 3}, + [57] = {.index = 83, .length = 3}, + [58] = {.index = 86, .length = 2}, + [59] = {.index = 88, .length = 2}, + [60] = {.index = 90, .length = 2}, + [61] = {.index = 92, .length = 1}, + [62] = {.index = 93, .length = 2}, + [63] = {.index = 95, .length = 1}, + [64] = {.index = 96, .length = 2}, + [65] = {.index = 98, .length = 2}, + [66] = {.index = 100, .length = 2}, + [67] = {.index = 102, .length = 2}, + [68] = {.index = 100, .length = 2}, + [69] = {.index = 104, .length = 2}, + [70] = {.index = 106, .length = 3}, + [71] = {.index = 109, .length = 2}, + [72] = {.index = 111, .length = 2}, + [73] = {.index = 113, .length = 2}, + [74] = {.index = 115, .length = 3}, + [75] = {.index = 118, .length = 2}, + [76] = {.index = 120, .length = 2}, + [77] = {.index = 122, .length = 4}, + [78] = {.index = 126, .length = 2}, + [79] = {.index = 128, .length = 2}, + [80] = {.index = 130, .length = 2}, + [81] = {.index = 132, .length = 3}, + [82] = {.index = 135, .length = 2}, + [83] = {.index = 137, .length = 3}, + [84] = {.index = 140, .length = 1}, + [85] = {.index = 141, .length = 2}, + [86] = {.index = 143, .length = 3}, + [87] = {.index = 146, .length = 4}, + [88] = {.index = 150, .length = 2}, + [89] = {.index = 150, .length = 2}, + [90] = {.index = 152, .length = 3}, + [91] = {.index = 155, .length = 3}, + [92] = {.index = 158, .length = 4}, + [93] = {.index = 162, .length = 2}, + [94] = {.index = 164, .length = 4}, + [95] = {.index = 168, .length = 2}, + [96] = {.index = 170, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1947,228 +1950,236 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, [15] = - {field_label, 0}, + {field_declaration, 2}, [16] = + {field_label, 0}, + [17] = {field_left, 0}, {field_right, 2}, - [18] = + [19] = {field_body, 2}, {field_parameter, 0}, - [20] = - {field_source, 1}, [21] = + {field_value, 1}, + [22] = + {field_source, 1}, + [23] = {field_name, 0}, {field_value, 1, .inherited = true}, - [23] = + [25] = {field_condition, 1}, {field_consequence, 2}, - [25] = + [27] = {field_body, 2}, {field_value, 1}, - [27] = + [29] = {field_body, 2}, {field_left, 1, .inherited = true}, {field_right, 1, .inherited = true}, - [30] = + [32] = {field_body, 2}, {field_condition, 1}, - [32] = + [34] = {field_body, 1}, {field_handler, 2}, - [34] = + [36] = {field_body, 1}, {field_finalizer, 2}, - [36] = + [38] = {field_body, 2}, {field_object, 1}, - [38] = + [40] = {field_label, 1}, - [39] = + [41] = {field_name, 1}, - [40] = + [42] = {field_attribute, 0}, - [41] = + [43] = {field_pattern, 1}, - [42] = + [44] = {field_member, 0}, - [43] = + [45] = {field_property, 0}, - [44] = + [46] = {field_body, 2}, {field_name, 1}, - [46] = + [48] = {field_body, 2}, - [47] = + [49] = {field_body, 2}, {field_parameters, 1}, - [49] = + [51] = {field_arguments, 2}, {field_constructor, 1}, - [51] = + [53] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [54] = + [56] = {field_object, 0}, {field_property, 2}, - [56] = + [58] = {field_arguments, 2}, {field_function, 0}, - [58] = + [60] = {field_close_tag, 2}, {field_open_tag, 0}, - [60] = + [62] = {field_body, 2}, {field_parameters, 0}, - [62] = + [64] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [64] = + [66] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [66] = + [68] = {field_source, 2, .inherited = true}, - [67] = + [69] = {field_value, 2}, - [68] = + [70] = {field_alias, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [70] = + [72] = {field_key, 0}, {field_value, 2}, - [72] = + [74] = {field_body, 2}, {field_name, 0}, {field_parameters, 1}, - [75] = - {field_value, 1}, - [76] = + [77] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [79] = + [80] = {field_body, 3}, {field_left, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [82] = + [83] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [85] = + [86] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [87] = + [88] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [89] = + [90] = {field_flags, 3}, {field_pattern, 1}, - [91] = - {field_property, 1}, [92] = + {field_property, 1}, + [93] = {field_property, 0}, {field_value, 1, .inherited = true}, - [94] = - {field_member, 1, .inherited = true}, [95] = + {field_member, 1, .inherited = true}, + [96] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [97] = + [98] = {field_body, 3}, {field_name, 1}, - [99] = + [100] = {field_body, 3}, {field_parameter, 1}, - [101] = + [102] = {field_body, 3}, {field_parameters, 2}, - [103] = + [104] = {field_body, 3}, {field_parameters, 1}, - [105] = + [106] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [108] = + [109] = {field_index, 2}, {field_object, 0}, - [110] = + [111] = + {field_declaration, 3}, + {field_decorator, 0, .inherited = true}, + [113] = + {field_decorator, 0, .inherited = true}, + {field_value, 2}, + [115] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [113] = + [118] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [115] = + [120] = {field_alias, 2}, {field_name, 0}, - [117] = + [122] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [121] = + [126] = {field_body, 1}, {field_condition, 3}, - [123] = + [128] = {field_property, 1}, {field_value, 2, .inherited = true}, - [125] = + [130] = {field_body, 4}, {field_parameters, 3}, - [127] = + [132] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [130] = + [135] = {field_index, 3}, {field_object, 0}, - [132] = + [137] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [135] = + [140] = {field_name, 2}, - [136] = + [141] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [138] = + [143] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [141] = + [146] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [145] = + [150] = {field_left, 1}, {field_right, 3}, - [147] = + [152] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [150] = + [155] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [153] = + [158] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [157] = + [162] = {field_left, 2}, {field_right, 4}, - [159] = + [164] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [163] = + [168] = {field_body, 4}, {field_parameter, 2}, - [165] = + [170] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, @@ -2183,37 +2194,37 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [4] = { [0] = alias_sym_property_identifier, }, - [13] = { - [0] = alias_sym_statement_identifier, - }, [14] = { - [0] = sym_identifier, + [0] = alias_sym_statement_identifier, }, [15] = { [0] = sym_identifier, }, [16] = { + [0] = sym_identifier, + }, + [18] = { [1] = alias_sym_shorthand_property_identifier, }, - [17] = { + [19] = { [1] = alias_sym_shorthand_property_identifier_pattern, }, - [27] = { + [29] = { [1] = alias_sym_statement_identifier, }, - [40] = { + [42] = { [2] = alias_sym_property_identifier, }, - [49] = { + [51] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [52] = { + [54] = { [1] = alias_sym_import_specifier, }, - [65] = { + [66] = { [1] = sym_identifier, }, - [85] = { + [88] = { [1] = sym_identifier, }, }; @@ -2251,7 +2262,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(57); if (lookahead == '!') ADVANCE(146); if (lookahead == '"') ADVANCE(150); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '$') ADVANCE(187); if (lookahead == '%') ADVANCE(134); if (lookahead == '&') ADVANCE(123); @@ -2308,26 +2319,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(174); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(58); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(145); + if (lookahead == '!') ADVANCE(146); if (lookahead == '"') ADVANCE(150); + if (lookahead == '%') ADVANCE(134); + if (lookahead == '&') ADVANCE(123); if (lookahead == '\'') ADVANCE(157); if (lookahead == '(') ADVANCE(65); - if (lookahead == '+') ADVANCE(129); - if (lookahead == '-') ADVANCE(131); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(130); + if (lookahead == ',') ADVANCE(63); + if (lookahead == '-') ADVANCE(132); if (lookahead == '.') ADVANCE(92); - if (lookahead == '/') ADVANCE(81); + if (lookahead == '/') ADVANCE(82); if (lookahead == '0') ADVANCE(177); if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '>') ADVANCE(78); + if (lookahead == ';') ADVANCE(67); + if (lookahead == '<') ADVANCE(76); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '?') ADVANCE(111); if (lookahead == '@') ADVANCE(189); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(23); + if (lookahead == ']') ADVANCE(74); + if (lookahead == '^') ADVANCE(126); if (lookahead == '`') ADVANCE(170); if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(64); if (lookahead == '~') ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || @@ -2336,46 +2356,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(3) + lookahead == 65279) SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(178); if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(188); + lookahead > '#') ADVANCE(188); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(58); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(19); + if (lookahead == '!') ADVANCE(145); if (lookahead == '"') ADVANCE(150); - if (lookahead == '%') ADVANCE(134); - if (lookahead == '&') ADVANCE(123); if (lookahead == '\'') ADVANCE(157); if (lookahead == '(') ADVANCE(65); - if (lookahead == ')') ADVANCE(66); - if (lookahead == '*') ADVANCE(60); - if (lookahead == '+') ADVANCE(130); - if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(132); + if (lookahead == '+') ADVANCE(129); + if (lookahead == '-') ADVANCE(131); if (lookahead == '.') ADVANCE(92); - if (lookahead == '/') ADVANCE(82); + if (lookahead == '/') ADVANCE(81); if (lookahead == '0') ADVANCE(177); if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(67); - if (lookahead == '<') ADVANCE(76); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(79); - if (lookahead == '?') ADVANCE(111); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '>') ADVANCE(78); if (lookahead == '@') ADVANCE(189); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(23); - if (lookahead == ']') ADVANCE(74); - if (lookahead == '^') ADVANCE(126); if (lookahead == '`') ADVANCE(170); if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '~') ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2387,7 +2394,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(178); if (lookahead != 0 && lookahead > '#' && - lookahead != '~') ADVANCE(188); + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(188); END_STATE(); case 5: if (lookahead == '!') ADVANCE(19); @@ -2760,7 +2771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(57); if (lookahead == '!') ADVANCE(146); if (lookahead == '"') ADVANCE(150); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '$') ADVANCE(187); if (lookahead == '%') ADVANCE(134); if (lookahead == '&') ADVANCE(123); @@ -2850,7 +2861,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(57); if (lookahead == '!') ADVANCE(145); if (lookahead == '"') ADVANCE(150); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '\'') ADVANCE(157); if (lookahead == '(') ADVANCE(65); if (lookahead == ')') ADVANCE(66); @@ -4215,16 +4226,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 56}, - [2] = {.lex_state = 56}, - [3] = {.lex_state = 56}, - [4] = {.lex_state = 56}, + [2] = {.lex_state = 2, .external_lex_state = 2}, + [3] = {.lex_state = 2, .external_lex_state = 2}, + [4] = {.lex_state = 2, .external_lex_state = 2}, [5] = {.lex_state = 56}, [6] = {.lex_state = 56}, [7] = {.lex_state = 56}, [8] = {.lex_state = 56}, [9] = {.lex_state = 56}, - [10] = {.lex_state = 56}, - [11] = {.lex_state = 56}, + [10] = {.lex_state = 2, .external_lex_state = 2}, + [11] = {.lex_state = 2, .external_lex_state = 2}, [12] = {.lex_state = 56}, [13] = {.lex_state = 56}, [14] = {.lex_state = 56}, @@ -4257,12 +4268,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 56}, [42] = {.lex_state = 56}, [43] = {.lex_state = 56}, - [44] = {.lex_state = 55}, - [45] = {.lex_state = 55, .external_lex_state = 2}, - [46] = {.lex_state = 55}, - [47] = {.lex_state = 55, .external_lex_state = 2}, + [44] = {.lex_state = 56}, + [45] = {.lex_state = 55}, + [46] = {.lex_state = 55, .external_lex_state = 2}, + [47] = {.lex_state = 55}, [48] = {.lex_state = 55, .external_lex_state = 2}, - [49] = {.lex_state = 55, .external_lex_state = 2}, + [49] = {.lex_state = 56}, [50] = {.lex_state = 55, .external_lex_state = 2}, [51] = {.lex_state = 55, .external_lex_state = 2}, [52] = {.lex_state = 55, .external_lex_state = 2}, @@ -4270,15 +4281,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [54] = {.lex_state = 55, .external_lex_state = 2}, [55] = {.lex_state = 55, .external_lex_state = 2}, [56] = {.lex_state = 55, .external_lex_state = 2}, - [57] = {.lex_state = 55, .external_lex_state = 2}, + [57] = {.lex_state = 56}, [58] = {.lex_state = 55, .external_lex_state = 2}, [59] = {.lex_state = 55, .external_lex_state = 2}, [60] = {.lex_state = 55, .external_lex_state = 2}, - [61] = {.lex_state = 55, .external_lex_state = 2}, - [62] = {.lex_state = 56}, - [63] = {.lex_state = 56}, - [64] = {.lex_state = 56}, - [65] = {.lex_state = 56}, + [61] = {.lex_state = 56}, + [62] = {.lex_state = 55, .external_lex_state = 2}, + [63] = {.lex_state = 55, .external_lex_state = 2}, + [64] = {.lex_state = 55, .external_lex_state = 2}, + [65] = {.lex_state = 55, .external_lex_state = 2}, [66] = {.lex_state = 56}, [67] = {.lex_state = 56}, [68] = {.lex_state = 56}, @@ -4296,20 +4307,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 56}, [81] = {.lex_state = 56}, [82] = {.lex_state = 56}, - [83] = {.lex_state = 56, .external_lex_state = 2}, + [83] = {.lex_state = 56}, [84] = {.lex_state = 56}, [85] = {.lex_state = 56}, [86] = {.lex_state = 56}, [87] = {.lex_state = 56}, [88] = {.lex_state = 56}, [89] = {.lex_state = 56}, - [90] = {.lex_state = 56}, + [90] = {.lex_state = 56, .external_lex_state = 2}, [91] = {.lex_state = 56}, - [92] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 56}, [93] = {.lex_state = 56}, [94] = {.lex_state = 56}, [95] = {.lex_state = 56}, - [96] = {.lex_state = 3}, + [96] = {.lex_state = 56}, [97] = {.lex_state = 56}, [98] = {.lex_state = 56}, [99] = {.lex_state = 56}, @@ -4319,8 +4330,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 56}, [104] = {.lex_state = 56}, [105] = {.lex_state = 56}, - [106] = {.lex_state = 3}, - [107] = {.lex_state = 4, .external_lex_state = 2}, + [106] = {.lex_state = 56}, + [107] = {.lex_state = 56}, [108] = {.lex_state = 56}, [109] = {.lex_state = 56}, [110] = {.lex_state = 56}, @@ -4329,20 +4340,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 56}, [114] = {.lex_state = 56}, [115] = {.lex_state = 56}, - [116] = {.lex_state = 3}, - [117] = {.lex_state = 56}, + [116] = {.lex_state = 56}, + [117] = {.lex_state = 4}, [118] = {.lex_state = 56}, [119] = {.lex_state = 56}, - [120] = {.lex_state = 56}, - [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 3}, + [120] = {.lex_state = 4}, + [121] = {.lex_state = 56}, + [122] = {.lex_state = 56}, [123] = {.lex_state = 56}, - [124] = {.lex_state = 56}, + [124] = {.lex_state = 4}, [125] = {.lex_state = 56}, [126] = {.lex_state = 56}, [127] = {.lex_state = 56}, [128] = {.lex_state = 56}, - [129] = {.lex_state = 56}, + [129] = {.lex_state = 4}, [130] = {.lex_state = 56}, [131] = {.lex_state = 56}, [132] = {.lex_state = 56}, @@ -4409,54 +4420,54 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [193] = {.lex_state = 56}, [194] = {.lex_state = 56}, [195] = {.lex_state = 56}, - [196] = {.lex_state = 4, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, - [200] = {.lex_state = 4, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, - [202] = {.lex_state = 4, .external_lex_state = 2}, - [203] = {.lex_state = 4, .external_lex_state = 2}, - [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 4, .external_lex_state = 2}, - [206] = {.lex_state = 4, .external_lex_state = 2}, - [207] = {.lex_state = 4}, + [196] = {.lex_state = 56}, + [197] = {.lex_state = 56}, + [198] = {.lex_state = 56}, + [199] = {.lex_state = 2, .external_lex_state = 2}, + [200] = {.lex_state = 2, .external_lex_state = 2}, + [201] = {.lex_state = 2, .external_lex_state = 2}, + [202] = {.lex_state = 2, .external_lex_state = 2}, + [203] = {.lex_state = 2, .external_lex_state = 2}, + [204] = {.lex_state = 2, .external_lex_state = 2}, + [205] = {.lex_state = 2, .external_lex_state = 2}, + [206] = {.lex_state = 2, .external_lex_state = 2}, + [207] = {.lex_state = 2, .external_lex_state = 2}, [208] = {.lex_state = 56, .external_lex_state = 2}, - [209] = {.lex_state = 56, .external_lex_state = 2}, - [210] = {.lex_state = 4}, - [211] = {.lex_state = 4, .external_lex_state = 2}, - [212] = {.lex_state = 4, .external_lex_state = 2}, - [213] = {.lex_state = 4, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 2}, + [209] = {.lex_state = 2}, + [210] = {.lex_state = 56, .external_lex_state = 2}, + [211] = {.lex_state = 2}, + [212] = {.lex_state = 2, .external_lex_state = 2}, + [213] = {.lex_state = 56}, + [214] = {.lex_state = 2, .external_lex_state = 2}, [215] = {.lex_state = 56}, - [216] = {.lex_state = 4, .external_lex_state = 2}, - [217] = {.lex_state = 56}, - [218] = {.lex_state = 56}, - [219] = {.lex_state = 4}, - [220] = {.lex_state = 4}, - [221] = {.lex_state = 56}, - [222] = {.lex_state = 4}, - [223] = {.lex_state = 4}, - [224] = {.lex_state = 56, .external_lex_state = 2}, - [225] = {.lex_state = 56, .external_lex_state = 2}, - [226] = {.lex_state = 4}, + [216] = {.lex_state = 2, .external_lex_state = 2}, + [217] = {.lex_state = 2, .external_lex_state = 2}, + [218] = {.lex_state = 2, .external_lex_state = 2}, + [219] = {.lex_state = 56}, + [220] = {.lex_state = 2}, + [221] = {.lex_state = 2}, + [222] = {.lex_state = 56}, + [223] = {.lex_state = 2}, + [224] = {.lex_state = 2, .external_lex_state = 2}, + [225] = {.lex_state = 2, .external_lex_state = 2}, + [226] = {.lex_state = 2}, [227] = {.lex_state = 56}, [228] = {.lex_state = 56}, - [229] = {.lex_state = 56, .external_lex_state = 2}, - [230] = {.lex_state = 56, .external_lex_state = 2}, - [231] = {.lex_state = 56, .external_lex_state = 2}, - [232] = {.lex_state = 56}, - [233] = {.lex_state = 56, .external_lex_state = 2}, - [234] = {.lex_state = 56, .external_lex_state = 2}, - [235] = {.lex_state = 56, .external_lex_state = 2}, + [229] = {.lex_state = 56}, + [230] = {.lex_state = 56}, + [231] = {.lex_state = 56}, + [232] = {.lex_state = 2}, + [233] = {.lex_state = 56}, + [234] = {.lex_state = 56}, + [235] = {.lex_state = 56}, [236] = {.lex_state = 56}, - [237] = {.lex_state = 56, .external_lex_state = 2}, - [238] = {.lex_state = 56, .external_lex_state = 2}, - [239] = {.lex_state = 56, .external_lex_state = 2}, + [237] = {.lex_state = 56}, + [238] = {.lex_state = 56}, + [239] = {.lex_state = 56}, [240] = {.lex_state = 56}, - [241] = {.lex_state = 56, .external_lex_state = 2}, - [242] = {.lex_state = 56, .external_lex_state = 2}, - [243] = {.lex_state = 56, .external_lex_state = 2}, + [241] = {.lex_state = 56}, + [242] = {.lex_state = 56}, + [243] = {.lex_state = 56}, [244] = {.lex_state = 56}, [245] = {.lex_state = 56}, [246] = {.lex_state = 56}, @@ -4539,75 +4550,75 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 56}, [324] = {.lex_state = 56}, [325] = {.lex_state = 56}, - [326] = {.lex_state = 56}, - [327] = {.lex_state = 56}, - [328] = {.lex_state = 56}, - [329] = {.lex_state = 56}, - [330] = {.lex_state = 56}, - [331] = {.lex_state = 56}, - [332] = {.lex_state = 4, .external_lex_state = 2}, - [333] = {.lex_state = 4, .external_lex_state = 2}, - [334] = {.lex_state = 4, .external_lex_state = 2}, - [335] = {.lex_state = 4}, - [336] = {.lex_state = 4}, - [337] = {.lex_state = 4}, - [338] = {.lex_state = 4}, - [339] = {.lex_state = 4}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 4}, - [342] = {.lex_state = 4}, - [343] = {.lex_state = 4}, - [344] = {.lex_state = 4, .external_lex_state = 2}, - [345] = {.lex_state = 4, .external_lex_state = 2}, - [346] = {.lex_state = 4, .external_lex_state = 2}, - [347] = {.lex_state = 4, .external_lex_state = 2}, - [348] = {.lex_state = 4, .external_lex_state = 2}, - [349] = {.lex_state = 4, .external_lex_state = 2}, - [350] = {.lex_state = 4, .external_lex_state = 2}, - [351] = {.lex_state = 4, .external_lex_state = 2}, - [352] = {.lex_state = 4, .external_lex_state = 2}, - [353] = {.lex_state = 4, .external_lex_state = 2}, - [354] = {.lex_state = 4, .external_lex_state = 2}, - [355] = {.lex_state = 4}, - [356] = {.lex_state = 4, .external_lex_state = 2}, - [357] = {.lex_state = 4, .external_lex_state = 2}, - [358] = {.lex_state = 4, .external_lex_state = 2}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 4}, + [326] = {.lex_state = 2, .external_lex_state = 2}, + [327] = {.lex_state = 2, .external_lex_state = 2}, + [328] = {.lex_state = 2, .external_lex_state = 2}, + [329] = {.lex_state = 2}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 2}, + [332] = {.lex_state = 2}, + [333] = {.lex_state = 2}, + [334] = {.lex_state = 2}, + [335] = {.lex_state = 2}, + [336] = {.lex_state = 2}, + [337] = {.lex_state = 2}, + [338] = {.lex_state = 2, .external_lex_state = 2}, + [339] = {.lex_state = 2, .external_lex_state = 2}, + [340] = {.lex_state = 2, .external_lex_state = 2}, + [341] = {.lex_state = 2, .external_lex_state = 2}, + [342] = {.lex_state = 2, .external_lex_state = 2}, + [343] = {.lex_state = 2, .external_lex_state = 2}, + [344] = {.lex_state = 2, .external_lex_state = 2}, + [345] = {.lex_state = 2, .external_lex_state = 2}, + [346] = {.lex_state = 2, .external_lex_state = 2}, + [347] = {.lex_state = 2, .external_lex_state = 2}, + [348] = {.lex_state = 2, .external_lex_state = 2}, + [349] = {.lex_state = 2, .external_lex_state = 2}, + [350] = {.lex_state = 2}, + [351] = {.lex_state = 2, .external_lex_state = 2}, + [352] = {.lex_state = 2, .external_lex_state = 2}, + [353] = {.lex_state = 56}, + [354] = {.lex_state = 2, .external_lex_state = 2}, + [355] = {.lex_state = 56}, + [356] = {.lex_state = 2, .external_lex_state = 2}, + [357] = {.lex_state = 56}, + [358] = {.lex_state = 2}, + [359] = {.lex_state = 2}, + [360] = {.lex_state = 2, .external_lex_state = 2}, [361] = {.lex_state = 56}, - [362] = {.lex_state = 4, .external_lex_state = 2}, - [363] = {.lex_state = 4, .external_lex_state = 2}, - [364] = {.lex_state = 56}, - [365] = {.lex_state = 56}, - [366] = {.lex_state = 56}, - [367] = {.lex_state = 4, .external_lex_state = 2}, - [368] = {.lex_state = 4}, - [369] = {.lex_state = 4}, - [370] = {.lex_state = 4}, - [371] = {.lex_state = 4}, - [372] = {.lex_state = 4}, - [373] = {.lex_state = 4}, - [374] = {.lex_state = 4}, - [375] = {.lex_state = 4}, - [376] = {.lex_state = 4}, - [377] = {.lex_state = 4}, + [362] = {.lex_state = 2}, + [363] = {.lex_state = 2}, + [364] = {.lex_state = 2}, + [365] = {.lex_state = 2}, + [366] = {.lex_state = 2}, + [367] = {.lex_state = 2}, + [368] = {.lex_state = 2}, + [369] = {.lex_state = 2}, + [370] = {.lex_state = 2}, + [371] = {.lex_state = 2}, + [372] = {.lex_state = 55}, + [373] = {.lex_state = 55}, + [374] = {.lex_state = 55}, + [375] = {.lex_state = 2}, + [376] = {.lex_state = 55, .external_lex_state = 2}, + [377] = {.lex_state = 55}, [378] = {.lex_state = 55}, [379] = {.lex_state = 55}, - [380] = {.lex_state = 4}, - [381] = {.lex_state = 55}, + [380] = {.lex_state = 55}, + [381] = {.lex_state = 55, .external_lex_state = 2}, [382] = {.lex_state = 55, .external_lex_state = 2}, [383] = {.lex_state = 55}, - [384] = {.lex_state = 55, .external_lex_state = 2}, + [384] = {.lex_state = 55}, [385] = {.lex_state = 55}, [386] = {.lex_state = 55}, - [387] = {.lex_state = 55}, + [387] = {.lex_state = 5}, [388] = {.lex_state = 55}, [389] = {.lex_state = 55}, [390] = {.lex_state = 55}, [391] = {.lex_state = 55}, - [392] = {.lex_state = 55, .external_lex_state = 2}, + [392] = {.lex_state = 55}, [393] = {.lex_state = 55}, - [394] = {.lex_state = 5}, + [394] = {.lex_state = 55}, [395] = {.lex_state = 55}, [396] = {.lex_state = 55}, [397] = {.lex_state = 55}, @@ -4622,109 +4633,109 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 55}, [407] = {.lex_state = 55}, [408] = {.lex_state = 55}, - [409] = {.lex_state = 55}, + [409] = {.lex_state = 55, .external_lex_state = 2}, [410] = {.lex_state = 55}, - [411] = {.lex_state = 55, .external_lex_state = 2}, + [411] = {.lex_state = 55}, [412] = {.lex_state = 55}, [413] = {.lex_state = 55}, [414] = {.lex_state = 55}, [415] = {.lex_state = 55}, - [416] = {.lex_state = 55}, - [417] = {.lex_state = 55}, + [416] = {.lex_state = 55, .external_lex_state = 2}, + [417] = {.lex_state = 55, .external_lex_state = 2}, [418] = {.lex_state = 55}, [419] = {.lex_state = 55}, [420] = {.lex_state = 55}, [421] = {.lex_state = 55}, - [422] = {.lex_state = 55, .external_lex_state = 2}, + [422] = {.lex_state = 55}, [423] = {.lex_state = 55, .external_lex_state = 2}, [424] = {.lex_state = 55}, - [425] = {.lex_state = 55}, + [425] = {.lex_state = 55, .external_lex_state = 2}, [426] = {.lex_state = 55}, [427] = {.lex_state = 55, .external_lex_state = 2}, [428] = {.lex_state = 55}, [429] = {.lex_state = 55, .external_lex_state = 2}, [430] = {.lex_state = 55}, - [431] = {.lex_state = 55}, + [431] = {.lex_state = 55, .external_lex_state = 2}, [432] = {.lex_state = 55, .external_lex_state = 2}, - [433] = {.lex_state = 55, .external_lex_state = 2}, + [433] = {.lex_state = 55}, [434] = {.lex_state = 55}, - [435] = {.lex_state = 55}, - [436] = {.lex_state = 55, .external_lex_state = 2}, - [437] = {.lex_state = 55}, - [438] = {.lex_state = 55}, + [435] = {.lex_state = 55, .external_lex_state = 2}, + [436] = {.lex_state = 55}, + [437] = {.lex_state = 55, .external_lex_state = 2}, + [438] = {.lex_state = 55, .external_lex_state = 2}, [439] = {.lex_state = 55, .external_lex_state = 2}, - [440] = {.lex_state = 55}, - [441] = {.lex_state = 55}, + [440] = {.lex_state = 55, .external_lex_state = 2}, + [441] = {.lex_state = 55, .external_lex_state = 2}, [442] = {.lex_state = 55, .external_lex_state = 2}, [443] = {.lex_state = 55, .external_lex_state = 2}, - [444] = {.lex_state = 55, .external_lex_state = 2}, - [445] = {.lex_state = 55, .external_lex_state = 2}, + [444] = {.lex_state = 55}, + [445] = {.lex_state = 55}, [446] = {.lex_state = 55, .external_lex_state = 2}, [447] = {.lex_state = 55, .external_lex_state = 2}, - [448] = {.lex_state = 55, .external_lex_state = 2}, + [448] = {.lex_state = 55}, [449] = {.lex_state = 55, .external_lex_state = 2}, [450] = {.lex_state = 55, .external_lex_state = 2}, - [451] = {.lex_state = 55}, + [451] = {.lex_state = 55, .external_lex_state = 2}, [452] = {.lex_state = 55}, [453] = {.lex_state = 55}, - [454] = {.lex_state = 55}, + [454] = {.lex_state = 55, .external_lex_state = 2}, [455] = {.lex_state = 55}, [456] = {.lex_state = 55}, [457] = {.lex_state = 55, .external_lex_state = 2}, [458] = {.lex_state = 55}, [459] = {.lex_state = 55}, - [460] = {.lex_state = 55}, + [460] = {.lex_state = 55, .external_lex_state = 2}, [461] = {.lex_state = 55}, [462] = {.lex_state = 55}, - [463] = {.lex_state = 55}, + [463] = {.lex_state = 55, .external_lex_state = 2}, [464] = {.lex_state = 55}, [465] = {.lex_state = 55}, [466] = {.lex_state = 55}, [467] = {.lex_state = 55}, - [468] = {.lex_state = 55}, - [469] = {.lex_state = 55, .external_lex_state = 2}, + [468] = {.lex_state = 55, .external_lex_state = 2}, + [469] = {.lex_state = 55}, [470] = {.lex_state = 55}, [471] = {.lex_state = 55}, [472] = {.lex_state = 55}, [473] = {.lex_state = 55, .external_lex_state = 2}, - [474] = {.lex_state = 55}, - [475] = {.lex_state = 55, .external_lex_state = 2}, + [474] = {.lex_state = 55, .external_lex_state = 2}, + [475] = {.lex_state = 55}, [476] = {.lex_state = 55}, [477] = {.lex_state = 55}, - [478] = {.lex_state = 55}, + [478] = {.lex_state = 55, .external_lex_state = 2}, [479] = {.lex_state = 55}, - [480] = {.lex_state = 55, .external_lex_state = 2}, + [480] = {.lex_state = 55}, [481] = {.lex_state = 55}, - [482] = {.lex_state = 55, .external_lex_state = 2}, - [483] = {.lex_state = 55, .external_lex_state = 2}, + [482] = {.lex_state = 55}, + [483] = {.lex_state = 55}, [484] = {.lex_state = 55}, [485] = {.lex_state = 55}, [486] = {.lex_state = 55}, - [487] = {.lex_state = 55, .external_lex_state = 2}, - [488] = {.lex_state = 55, .external_lex_state = 2}, + [487] = {.lex_state = 55}, + [488] = {.lex_state = 55}, [489] = {.lex_state = 55}, [490] = {.lex_state = 55}, [491] = {.lex_state = 55}, - [492] = {.lex_state = 55}, + [492] = {.lex_state = 55, .external_lex_state = 2}, [493] = {.lex_state = 55}, [494] = {.lex_state = 55}, [495] = {.lex_state = 55}, - [496] = {.lex_state = 55, .external_lex_state = 2}, + [496] = {.lex_state = 55}, [497] = {.lex_state = 55}, [498] = {.lex_state = 55}, [499] = {.lex_state = 55, .external_lex_state = 2}, - [500] = {.lex_state = 55}, + [500] = {.lex_state = 55, .external_lex_state = 2}, [501] = {.lex_state = 55, .external_lex_state = 2}, - [502] = {.lex_state = 55}, + [502] = {.lex_state = 55, .external_lex_state = 2}, [503] = {.lex_state = 55, .external_lex_state = 2}, [504] = {.lex_state = 55}, - [505] = {.lex_state = 5, .external_lex_state = 2}, - [506] = {.lex_state = 55}, + [505] = {.lex_state = 55, .external_lex_state = 2}, + [506] = {.lex_state = 55, .external_lex_state = 2}, [507] = {.lex_state = 55, .external_lex_state = 2}, [508] = {.lex_state = 55, .external_lex_state = 2}, [509] = {.lex_state = 55, .external_lex_state = 2}, - [510] = {.lex_state = 55}, - [511] = {.lex_state = 55, .external_lex_state = 2}, + [510] = {.lex_state = 55, .external_lex_state = 2}, + [511] = {.lex_state = 55}, [512] = {.lex_state = 55, .external_lex_state = 2}, [513] = {.lex_state = 55, .external_lex_state = 2}, [514] = {.lex_state = 55, .external_lex_state = 2}, @@ -4732,31 +4743,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [516] = {.lex_state = 55, .external_lex_state = 2}, [517] = {.lex_state = 55, .external_lex_state = 2}, [518] = {.lex_state = 55, .external_lex_state = 2}, - [519] = {.lex_state = 55, .external_lex_state = 2}, - [520] = {.lex_state = 55, .external_lex_state = 2}, - [521] = {.lex_state = 55, .external_lex_state = 2}, + [519] = {.lex_state = 55}, + [520] = {.lex_state = 55}, + [521] = {.lex_state = 5, .external_lex_state = 2}, [522] = {.lex_state = 55, .external_lex_state = 2}, [523] = {.lex_state = 55, .external_lex_state = 2}, - [524] = {.lex_state = 55, .external_lex_state = 2}, + [524] = {.lex_state = 55}, [525] = {.lex_state = 55}, - [526] = {.lex_state = 55}, + [526] = {.lex_state = 55, .external_lex_state = 2}, [527] = {.lex_state = 55, .external_lex_state = 2}, [528] = {.lex_state = 55, .external_lex_state = 2}, [529] = {.lex_state = 55, .external_lex_state = 2}, - [530] = {.lex_state = 55}, - [531] = {.lex_state = 55}, + [530] = {.lex_state = 55, .external_lex_state = 2}, + [531] = {.lex_state = 55, .external_lex_state = 2}, [532] = {.lex_state = 55, .external_lex_state = 2}, [533] = {.lex_state = 55, .external_lex_state = 2}, [534] = {.lex_state = 55, .external_lex_state = 2}, - [535] = {.lex_state = 55}, - [536] = {.lex_state = 55}, + [535] = {.lex_state = 55, .external_lex_state = 2}, + [536] = {.lex_state = 55, .external_lex_state = 2}, [537] = {.lex_state = 55, .external_lex_state = 2}, [538] = {.lex_state = 55, .external_lex_state = 2}, [539] = {.lex_state = 55, .external_lex_state = 2}, - [540] = {.lex_state = 55, .external_lex_state = 2}, - [541] = {.lex_state = 55}, + [540] = {.lex_state = 55}, + [541] = {.lex_state = 55, .external_lex_state = 2}, [542] = {.lex_state = 55}, - [543] = {.lex_state = 55}, + [543] = {.lex_state = 55, .external_lex_state = 2}, [544] = {.lex_state = 55}, [545] = {.lex_state = 55, .external_lex_state = 2}, [546] = {.lex_state = 55, .external_lex_state = 2}, @@ -4765,83 +4776,83 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 55}, [550] = {.lex_state = 55, .external_lex_state = 2}, [551] = {.lex_state = 55, .external_lex_state = 2}, - [552] = {.lex_state = 55, .external_lex_state = 2}, - [553] = {.lex_state = 55}, - [554] = {.lex_state = 55, .external_lex_state = 2}, + [552] = {.lex_state = 55}, + [553] = {.lex_state = 55, .external_lex_state = 2}, + [554] = {.lex_state = 55}, [555] = {.lex_state = 55}, [556] = {.lex_state = 55, .external_lex_state = 2}, - [557] = {.lex_state = 55, .external_lex_state = 2}, - [558] = {.lex_state = 55}, + [557] = {.lex_state = 55}, + [558] = {.lex_state = 55, .external_lex_state = 2}, [559] = {.lex_state = 55}, - [560] = {.lex_state = 55, .external_lex_state = 2}, - [561] = {.lex_state = 55}, - [562] = {.lex_state = 55, .external_lex_state = 2}, + [560] = {.lex_state = 55}, + [561] = {.lex_state = 55, .external_lex_state = 2}, + [562] = {.lex_state = 55}, [563] = {.lex_state = 55}, - [564] = {.lex_state = 55, .external_lex_state = 2}, + [564] = {.lex_state = 55}, [565] = {.lex_state = 55, .external_lex_state = 2}, [566] = {.lex_state = 55, .external_lex_state = 2}, - [567] = {.lex_state = 55, .external_lex_state = 2}, + [567] = {.lex_state = 55}, [568] = {.lex_state = 55}, [569] = {.lex_state = 55, .external_lex_state = 2}, - [570] = {.lex_state = 55, .external_lex_state = 2}, + [570] = {.lex_state = 55}, [571] = {.lex_state = 55, .external_lex_state = 2}, - [572] = {.lex_state = 55}, - [573] = {.lex_state = 55}, - [574] = {.lex_state = 55}, + [572] = {.lex_state = 55, .external_lex_state = 2}, + [573] = {.lex_state = 55, .external_lex_state = 2}, + [574] = {.lex_state = 55, .external_lex_state = 2}, [575] = {.lex_state = 55, .external_lex_state = 2}, - [576] = {.lex_state = 55}, - [577] = {.lex_state = 55, .external_lex_state = 2}, - [578] = {.lex_state = 55}, - [579] = {.lex_state = 55, .external_lex_state = 2}, - [580] = {.lex_state = 55, .external_lex_state = 2}, + [576] = {.lex_state = 55, .external_lex_state = 2}, + [577] = {.lex_state = 55}, + [578] = {.lex_state = 55, .external_lex_state = 2}, + [579] = {.lex_state = 55}, + [580] = {.lex_state = 55}, [581] = {.lex_state = 55}, [582] = {.lex_state = 55, .external_lex_state = 2}, [583] = {.lex_state = 55}, - [584] = {.lex_state = 55}, + [584] = {.lex_state = 55, .external_lex_state = 2}, [585] = {.lex_state = 55}, [586] = {.lex_state = 55, .external_lex_state = 2}, [587] = {.lex_state = 55}, - [588] = {.lex_state = 55, .external_lex_state = 2}, - [589] = {.lex_state = 55}, + [588] = {.lex_state = 55}, + [589] = {.lex_state = 55, .external_lex_state = 2}, [590] = {.lex_state = 55, .external_lex_state = 2}, [591] = {.lex_state = 55}, [592] = {.lex_state = 55, .external_lex_state = 2}, [593] = {.lex_state = 55}, - [594] = {.lex_state = 55, .external_lex_state = 2}, - [595] = {.lex_state = 55, .external_lex_state = 2}, + [594] = {.lex_state = 55}, + [595] = {.lex_state = 55}, [596] = {.lex_state = 55, .external_lex_state = 2}, - [597] = {.lex_state = 55}, + [597] = {.lex_state = 55, .external_lex_state = 2}, [598] = {.lex_state = 55, .external_lex_state = 2}, [599] = {.lex_state = 55, .external_lex_state = 2}, - [600] = {.lex_state = 55}, - [601] = {.lex_state = 55, .external_lex_state = 2}, + [600] = {.lex_state = 55, .external_lex_state = 2}, + [601] = {.lex_state = 55}, [602] = {.lex_state = 55}, [603] = {.lex_state = 55, .external_lex_state = 2}, - [604] = {.lex_state = 55, .external_lex_state = 2}, + [604] = {.lex_state = 55}, [605] = {.lex_state = 55, .external_lex_state = 2}, - [606] = {.lex_state = 55, .external_lex_state = 2}, + [606] = {.lex_state = 55}, [607] = {.lex_state = 55, .external_lex_state = 2}, [608] = {.lex_state = 55, .external_lex_state = 2}, [609] = {.lex_state = 55, .external_lex_state = 2}, - [610] = {.lex_state = 55, .external_lex_state = 2}, - [611] = {.lex_state = 55, .external_lex_state = 2}, + [610] = {.lex_state = 55}, + [611] = {.lex_state = 55}, [612] = {.lex_state = 55, .external_lex_state = 2}, - [613] = {.lex_state = 55, .external_lex_state = 2}, + [613] = {.lex_state = 55}, [614] = {.lex_state = 55, .external_lex_state = 2}, - [615] = {.lex_state = 55}, - [616] = {.lex_state = 55}, + [615] = {.lex_state = 55, .external_lex_state = 2}, + [616] = {.lex_state = 55, .external_lex_state = 2}, [617] = {.lex_state = 55, .external_lex_state = 2}, [618] = {.lex_state = 55}, - [619] = {.lex_state = 55}, + [619] = {.lex_state = 55, .external_lex_state = 2}, [620] = {.lex_state = 55, .external_lex_state = 2}, - [621] = {.lex_state = 55}, + [621] = {.lex_state = 55, .external_lex_state = 2}, [622] = {.lex_state = 55}, - [623] = {.lex_state = 55}, - [624] = {.lex_state = 55, .external_lex_state = 2}, + [623] = {.lex_state = 55, .external_lex_state = 2}, + [624] = {.lex_state = 55}, [625] = {.lex_state = 55}, [626] = {.lex_state = 55}, - [627] = {.lex_state = 55, .external_lex_state = 2}, - [628] = {.lex_state = 55, .external_lex_state = 2}, + [627] = {.lex_state = 55}, + [628] = {.lex_state = 55}, [629] = {.lex_state = 55}, [630] = {.lex_state = 55}, [631] = {.lex_state = 55}, @@ -4853,9 +4864,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [637] = {.lex_state = 55}, [638] = {.lex_state = 55}, [639] = {.lex_state = 55}, - [640] = {.lex_state = 55}, - [641] = {.lex_state = 55}, - [642] = {.lex_state = 55}, + [640] = {.lex_state = 56}, + [641] = {.lex_state = 56}, + [642] = {.lex_state = 56}, [643] = {.lex_state = 56}, [644] = {.lex_state = 56}, [645] = {.lex_state = 56}, @@ -4891,33 +4902,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 56}, [676] = {.lex_state = 56}, [677] = {.lex_state = 56}, - [678] = {.lex_state = 56}, - [679] = {.lex_state = 56}, - [680] = {.lex_state = 56}, + [678] = {.lex_state = 56, .external_lex_state = 2}, + [679] = {.lex_state = 56, .external_lex_state = 2}, + [680] = {.lex_state = 56, .external_lex_state = 2}, [681] = {.lex_state = 56}, - [682] = {.lex_state = 56, .external_lex_state = 2}, + [682] = {.lex_state = 56}, [683] = {.lex_state = 56}, - [684] = {.lex_state = 56, .external_lex_state = 2}, + [684] = {.lex_state = 56}, [685] = {.lex_state = 56}, [686] = {.lex_state = 56}, [687] = {.lex_state = 56, .external_lex_state = 2}, [688] = {.lex_state = 56}, - [689] = {.lex_state = 56}, - [690] = {.lex_state = 56, .external_lex_state = 2}, - [691] = {.lex_state = 56, .external_lex_state = 2}, + [689] = {.lex_state = 56, .external_lex_state = 2}, + [690] = {.lex_state = 56}, + [691] = {.lex_state = 56}, [692] = {.lex_state = 56}, - [693] = {.lex_state = 56}, + [693] = {.lex_state = 2}, [694] = {.lex_state = 56}, [695] = {.lex_state = 56}, [696] = {.lex_state = 56}, [697] = {.lex_state = 56}, [698] = {.lex_state = 56}, - [699] = {.lex_state = 55}, + [699] = {.lex_state = 56}, [700] = {.lex_state = 56}, [701] = {.lex_state = 56}, [702] = {.lex_state = 56}, [703] = {.lex_state = 56}, - [704] = {.lex_state = 55}, + [704] = {.lex_state = 56}, [705] = {.lex_state = 56}, [706] = {.lex_state = 56}, [707] = {.lex_state = 56}, @@ -4925,18 +4936,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [709] = {.lex_state = 56}, [710] = {.lex_state = 56}, [711] = {.lex_state = 56}, - [712] = {.lex_state = 4}, + [712] = {.lex_state = 56}, [713] = {.lex_state = 56}, - [714] = {.lex_state = 4}, + [714] = {.lex_state = 56}, [715] = {.lex_state = 56}, [716] = {.lex_state = 56}, [717] = {.lex_state = 56}, [718] = {.lex_state = 56}, - [719] = {.lex_state = 56}, - [720] = {.lex_state = 4}, - [721] = {.lex_state = 56}, + [719] = {.lex_state = 2}, + [720] = {.lex_state = 2}, + [721] = {.lex_state = 2}, [722] = {.lex_state = 56}, - [723] = {.lex_state = 56}, + [723] = {.lex_state = 2}, [724] = {.lex_state = 56}, [725] = {.lex_state = 56}, [726] = {.lex_state = 56}, @@ -4963,50 +4974,50 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [747] = {.lex_state = 56}, [748] = {.lex_state = 56}, [749] = {.lex_state = 56}, - [750] = {.lex_state = 56}, - [751] = {.lex_state = 56}, - [752] = {.lex_state = 56}, - [753] = {.lex_state = 56}, - [754] = {.lex_state = 56}, - [755] = {.lex_state = 56}, - [756] = {.lex_state = 16}, + [750] = {.lex_state = 16}, + [751] = {.lex_state = 16}, + [752] = {.lex_state = 16}, + [753] = {.lex_state = 16}, + [754] = {.lex_state = 16}, + [755] = {.lex_state = 16}, + [756] = {.lex_state = 17}, [757] = {.lex_state = 16}, - [758] = {.lex_state = 16}, - [759] = {.lex_state = 16}, - [760] = {.lex_state = 17}, - [761] = {.lex_state = 16}, + [758] = {.lex_state = 17}, + [759] = {.lex_state = 17}, + [760] = {.lex_state = 56}, + [761] = {.lex_state = 56}, [762] = {.lex_state = 16}, [763] = {.lex_state = 17}, - [764] = {.lex_state = 16}, - [765] = {.lex_state = 17}, - [766] = {.lex_state = 56}, - [767] = {.lex_state = 17}, + [764] = {.lex_state = 17}, + [765] = {.lex_state = 16}, + [766] = {.lex_state = 17}, + [767] = {.lex_state = 16}, [768] = {.lex_state = 17}, [769] = {.lex_state = 16}, [770] = {.lex_state = 17}, [771] = {.lex_state = 16}, - [772] = {.lex_state = 17}, + [772] = {.lex_state = 16}, [773] = {.lex_state = 17}, - [774] = {.lex_state = 56}, - [775] = {.lex_state = 16}, + [774] = {.lex_state = 17}, + [775] = {.lex_state = 17}, [776] = {.lex_state = 16}, [777] = {.lex_state = 16}, - [778] = {.lex_state = 17}, + [778] = {.lex_state = 16}, [779] = {.lex_state = 16}, - [780] = {.lex_state = 17}, + [780] = {.lex_state = 16}, [781] = {.lex_state = 16}, - [782] = {.lex_state = 17}, + [782] = {.lex_state = 16}, [783] = {.lex_state = 16}, [784] = {.lex_state = 16}, - [785] = {.lex_state = 16}, - [786] = {.lex_state = 17}, + [785] = {.lex_state = 17}, + [786] = {.lex_state = 16}, [787] = {.lex_state = 16}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 16}, + [788] = {.lex_state = 16}, + [789] = {.lex_state = 17}, [790] = {.lex_state = 17}, [791] = {.lex_state = 17}, [792] = {.lex_state = 16}, - [793] = {.lex_state = 16}, + [793] = {.lex_state = 17}, [794] = {.lex_state = 16}, [795] = {.lex_state = 16}, [796] = {.lex_state = 16}, @@ -5014,284 +5025,284 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 16}, [799] = {.lex_state = 16}, [800] = {.lex_state = 16}, - [801] = {.lex_state = 17}, - [802] = {.lex_state = 16}, - [803] = {.lex_state = 16}, - [804] = {.lex_state = 16}, - [805] = {.lex_state = 16}, - [806] = {.lex_state = 16}, - [807] = {.lex_state = 16}, + [801] = {.lex_state = 16}, + [802] = {.lex_state = 56}, + [803] = {.lex_state = 56}, + [804] = {.lex_state = 56}, + [805] = {.lex_state = 56}, + [806] = {.lex_state = 56}, + [807] = {.lex_state = 56}, [808] = {.lex_state = 56}, [809] = {.lex_state = 56}, - [810] = {.lex_state = 56}, - [811] = {.lex_state = 56}, - [812] = {.lex_state = 56}, + [810] = {.lex_state = 0}, + [811] = {.lex_state = 0}, + [812] = {.lex_state = 0}, [813] = {.lex_state = 0}, - [814] = {.lex_state = 56}, - [815] = {.lex_state = 56, .external_lex_state = 2}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 56}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 56}, + [818] = {.lex_state = 56}, + [819] = {.lex_state = 56}, + [820] = {.lex_state = 56, .external_lex_state = 2}, [821] = {.lex_state = 56}, [822] = {.lex_state = 56}, - [823] = {.lex_state = 56}, - [824] = {.lex_state = 56}, - [825] = {.lex_state = 56}, - [826] = {.lex_state = 56}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 16}, + [825] = {.lex_state = 16}, + [826] = {.lex_state = 16}, [827] = {.lex_state = 56}, - [828] = {.lex_state = 16}, + [828] = {.lex_state = 56}, [829] = {.lex_state = 16}, - [830] = {.lex_state = 8, .external_lex_state = 3}, - [831] = {.lex_state = 8, .external_lex_state = 3}, - [832] = {.lex_state = 0, .external_lex_state = 2}, - [833] = {.lex_state = 56, .external_lex_state = 2}, - [834] = {.lex_state = 16}, - [835] = {.lex_state = 16}, - [836] = {.lex_state = 16}, - [837] = {.lex_state = 56, .external_lex_state = 2}, - [838] = {.lex_state = 56, .external_lex_state = 2}, + [830] = {.lex_state = 16}, + [831] = {.lex_state = 56}, + [832] = {.lex_state = 56}, + [833] = {.lex_state = 8, .external_lex_state = 3}, + [834] = {.lex_state = 56, .external_lex_state = 2}, + [835] = {.lex_state = 8, .external_lex_state = 3}, + [836] = {.lex_state = 8, .external_lex_state = 3}, + [837] = {.lex_state = 16}, + [838] = {.lex_state = 16}, [839] = {.lex_state = 56}, - [840] = {.lex_state = 16}, - [841] = {.lex_state = 56, .external_lex_state = 2}, + [840] = {.lex_state = 56, .external_lex_state = 2}, + [841] = {.lex_state = 0, .external_lex_state = 2}, [842] = {.lex_state = 16}, [843] = {.lex_state = 56, .external_lex_state = 2}, - [844] = {.lex_state = 8, .external_lex_state = 3}, - [845] = {.lex_state = 56, .external_lex_state = 2}, - [846] = {.lex_state = 56}, - [847] = {.lex_state = 16}, - [848] = {.lex_state = 16}, - [849] = {.lex_state = 0, .external_lex_state = 2}, - [850] = {.lex_state = 56}, + [844] = {.lex_state = 56}, + [845] = {.lex_state = 16}, + [846] = {.lex_state = 56, .external_lex_state = 2}, + [847] = {.lex_state = 8, .external_lex_state = 3}, + [848] = {.lex_state = 56, .external_lex_state = 2}, + [849] = {.lex_state = 56, .external_lex_state = 2}, + [850] = {.lex_state = 56, .external_lex_state = 2}, [851] = {.lex_state = 16}, - [852] = {.lex_state = 56, .external_lex_state = 2}, - [853] = {.lex_state = 56}, - [854] = {.lex_state = 8, .external_lex_state = 3}, + [852] = {.lex_state = 16}, + [853] = {.lex_state = 8, .external_lex_state = 3}, + [854] = {.lex_state = 56, .external_lex_state = 2}, [855] = {.lex_state = 16}, [856] = {.lex_state = 16}, - [857] = {.lex_state = 16}, + [857] = {.lex_state = 0, .external_lex_state = 2}, [858] = {.lex_state = 16}, - [859] = {.lex_state = 56, .external_lex_state = 2}, + [859] = {.lex_state = 16}, [860] = {.lex_state = 16}, - [861] = {.lex_state = 16}, - [862] = {.lex_state = 56}, - [863] = {.lex_state = 8, .external_lex_state = 3}, - [864] = {.lex_state = 56}, + [861] = {.lex_state = 56}, + [862] = {.lex_state = 0}, + [863] = {.lex_state = 16}, + [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, - [866] = {.lex_state = 56}, - [867] = {.lex_state = 56}, + [866] = {.lex_state = 16}, + [867] = {.lex_state = 16}, [868] = {.lex_state = 0}, [869] = {.lex_state = 16}, [870] = {.lex_state = 16}, [871] = {.lex_state = 16}, - [872] = {.lex_state = 16}, + [872] = {.lex_state = 56}, [873] = {.lex_state = 0}, [874] = {.lex_state = 16}, [875] = {.lex_state = 16}, - [876] = {.lex_state = 16}, - [877] = {.lex_state = 16}, - [878] = {.lex_state = 16}, - [879] = {.lex_state = 16}, - [880] = {.lex_state = 56}, + [876] = {.lex_state = 56}, + [877] = {.lex_state = 56}, + [878] = {.lex_state = 56}, + [879] = {.lex_state = 56}, + [880] = {.lex_state = 16}, [881] = {.lex_state = 16}, [882] = {.lex_state = 56}, [883] = {.lex_state = 16}, - [884] = {.lex_state = 16}, + [884] = {.lex_state = 56}, [885] = {.lex_state = 16}, - [886] = {.lex_state = 16}, - [887] = {.lex_state = 56}, - [888] = {.lex_state = 0}, + [886] = {.lex_state = 56}, + [887] = {.lex_state = 0, .external_lex_state = 2}, + [888] = {.lex_state = 16}, [889] = {.lex_state = 16}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 56}, - [892] = {.lex_state = 56}, - [893] = {.lex_state = 56}, - [894] = {.lex_state = 56}, - [895] = {.lex_state = 0}, + [890] = {.lex_state = 16}, + [891] = {.lex_state = 0}, + [892] = {.lex_state = 16}, + [893] = {.lex_state = 16}, + [894] = {.lex_state = 16}, + [895] = {.lex_state = 56}, [896] = {.lex_state = 16}, [897] = {.lex_state = 16}, - [898] = {.lex_state = 16}, - [899] = {.lex_state = 56}, - [900] = {.lex_state = 16}, + [898] = {.lex_state = 0, .external_lex_state = 2}, + [899] = {.lex_state = 7}, + [900] = {.lex_state = 7}, [901] = {.lex_state = 0, .external_lex_state = 2}, - [902] = {.lex_state = 16}, + [902] = {.lex_state = 0, .external_lex_state = 2}, [903] = {.lex_state = 56}, - [904] = {.lex_state = 56}, - [905] = {.lex_state = 7}, + [904] = {.lex_state = 10}, + [905] = {.lex_state = 56}, [906] = {.lex_state = 10}, - [907] = {.lex_state = 7}, + [907] = {.lex_state = 10}, [908] = {.lex_state = 56}, - [909] = {.lex_state = 56}, - [910] = {.lex_state = 0, .external_lex_state = 2}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 0, .external_lex_state = 2}, - [913] = {.lex_state = 56}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0}, + [909] = {.lex_state = 0, .external_lex_state = 2}, + [910] = {.lex_state = 16}, + [911] = {.lex_state = 0, .external_lex_state = 2}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 8, .external_lex_state = 3}, + [914] = {.lex_state = 7}, + [915] = {.lex_state = 16}, [916] = {.lex_state = 56}, - [917] = {.lex_state = 0}, + [917] = {.lex_state = 56}, [918] = {.lex_state = 56}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 56}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 56}, - [923] = {.lex_state = 0, .external_lex_state = 2}, - [924] = {.lex_state = 56}, - [925] = {.lex_state = 56}, - [926] = {.lex_state = 56}, - [927] = {.lex_state = 56, .external_lex_state = 2}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 56}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 16}, - [932] = {.lex_state = 56}, - [933] = {.lex_state = 56}, - [934] = {.lex_state = 10}, - [935] = {.lex_state = 56}, - [936] = {.lex_state = 0, .external_lex_state = 2}, - [937] = {.lex_state = 0, .external_lex_state = 2}, - [938] = {.lex_state = 56}, - [939] = {.lex_state = 56}, + [919] = {.lex_state = 56}, + [920] = {.lex_state = 10}, + [921] = {.lex_state = 56}, + [922] = {.lex_state = 56, .external_lex_state = 2}, + [923] = {.lex_state = 56}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 7}, + [926] = {.lex_state = 10}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 56}, + [929] = {.lex_state = 0, .external_lex_state = 2}, + [930] = {.lex_state = 7}, + [931] = {.lex_state = 10}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 56}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 16}, + [937] = {.lex_state = 56}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, - [941] = {.lex_state = 0, .external_lex_state = 2}, - [942] = {.lex_state = 7}, - [943] = {.lex_state = 10}, - [944] = {.lex_state = 56}, - [945] = {.lex_state = 10}, - [946] = {.lex_state = 10}, - [947] = {.lex_state = 7}, - [948] = {.lex_state = 7}, - [949] = {.lex_state = 10}, - [950] = {.lex_state = 7}, - [951] = {.lex_state = 8, .external_lex_state = 3}, - [952] = {.lex_state = 16}, + [941] = {.lex_state = 56}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 56}, + [944] = {.lex_state = 7}, + [945] = {.lex_state = 56}, + [946] = {.lex_state = 56}, + [947] = {.lex_state = 56}, + [948] = {.lex_state = 56}, + [949] = {.lex_state = 7}, + [950] = {.lex_state = 10}, + [951] = {.lex_state = 0, .external_lex_state = 2}, + [952] = {.lex_state = 56}, [953] = {.lex_state = 56}, [954] = {.lex_state = 56}, [955] = {.lex_state = 56}, [956] = {.lex_state = 56}, - [957] = {.lex_state = 56}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 10}, - [960] = {.lex_state = 56}, + [957] = {.lex_state = 17}, + [958] = {.lex_state = 4}, + [959] = {.lex_state = 17}, + [960] = {.lex_state = 17}, [961] = {.lex_state = 56}, - [962] = {.lex_state = 56}, - [963] = {.lex_state = 7}, - [964] = {.lex_state = 56}, - [965] = {.lex_state = 16}, - [966] = {.lex_state = 0, .external_lex_state = 2}, + [962] = {.lex_state = 17}, + [963] = {.lex_state = 17}, + [964] = {.lex_state = 17}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 17}, [967] = {.lex_state = 17}, [968] = {.lex_state = 0}, - [969] = {.lex_state = 17}, + [969] = {.lex_state = 0}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 17}, + [971] = {.lex_state = 0}, [972] = {.lex_state = 17}, - [973] = {.lex_state = 0, .external_lex_state = 2}, - [974] = {.lex_state = 17}, - [975] = {.lex_state = 0}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 56}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 17}, + [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 17}, - [980] = {.lex_state = 17}, - [981] = {.lex_state = 17}, - [982] = {.lex_state = 17}, - [983] = {.lex_state = 17}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 56}, + [981] = {.lex_state = 56}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, [984] = {.lex_state = 17}, - [985] = {.lex_state = 56, .external_lex_state = 2}, + [985] = {.lex_state = 56}, [986] = {.lex_state = 0}, - [987] = {.lex_state = 3}, - [988] = {.lex_state = 17}, - [989] = {.lex_state = 56}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0}, [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, + [991] = {.lex_state = 17}, [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 56, .external_lex_state = 2}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 56}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 17}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 3}, - [1003] = {.lex_state = 56, .external_lex_state = 2}, - [1004] = {.lex_state = 3}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 56}, - [1007] = {.lex_state = 0, .external_lex_state = 2}, + [994] = {.lex_state = 56}, + [995] = {.lex_state = 0, .external_lex_state = 2}, + [996] = {.lex_state = 56, .external_lex_state = 2}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 56}, + [999] = {.lex_state = 56, .external_lex_state = 2}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 56}, + [1002] = {.lex_state = 56}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 56}, + [1005] = {.lex_state = 56, .external_lex_state = 2}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0}, [1008] = {.lex_state = 56, .external_lex_state = 2}, - [1009] = {.lex_state = 56}, + [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, [1011] = {.lex_state = 56}, [1012] = {.lex_state = 56}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 56}, + [1013] = {.lex_state = 56}, + [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, + [1016] = {.lex_state = 56}, + [1017] = {.lex_state = 0, .external_lex_state = 2}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 17}, + [1020] = {.lex_state = 56}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 56}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, + [1025] = {.lex_state = 56}, + [1026] = {.lex_state = 4}, [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 56}, - [1032] = {.lex_state = 0}, + [1029] = {.lex_state = 17}, + [1030] = {.lex_state = 17}, + [1031] = {.lex_state = 4}, + [1032] = {.lex_state = 17}, [1033] = {.lex_state = 0}, [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 56}, + [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 17}, - [1039] = {.lex_state = 56}, - [1040] = {.lex_state = 0}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 17}, + [1040] = {.lex_state = 56, .external_lex_state = 2}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 56}, - [1043] = {.lex_state = 56}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 56}, - [1046] = {.lex_state = 3}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 4}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 17}, + [1047] = {.lex_state = 56, .external_lex_state = 2}, + [1048] = {.lex_state = 56}, + [1049] = {.lex_state = 56, .external_lex_state = 2}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 56, .external_lex_state = 2}, - [1054] = {.lex_state = 56}, - [1055] = {.lex_state = 56, .external_lex_state = 2}, - [1056] = {.lex_state = 56}, - [1057] = {.lex_state = 56}, + [1053] = {.lex_state = 56}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 56}, - [1064] = {.lex_state = 56, .external_lex_state = 2}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 17}, - [1067] = {.lex_state = 56, .external_lex_state = 2}, - [1068] = {.lex_state = 56, .external_lex_state = 2}, - [1069] = {.lex_state = 56}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 0, .external_lex_state = 2}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 3}, - [1076] = {.lex_state = 56}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0, .external_lex_state = 2}, [1077] = {.lex_state = 56}, - [1078] = {.lex_state = 0, .external_lex_state = 2}, + [1078] = {.lex_state = 4}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, [1081] = {.lex_state = 56}, @@ -5300,17 +5311,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, + [1087] = {.lex_state = 0, .external_lex_state = 2}, [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0, .external_lex_state = 2}, - [1092] = {.lex_state = 0}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0, .external_lex_state = 2}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, + [1094] = {.lex_state = 56}, + [1095] = {.lex_state = 56}, + [1096] = {.lex_state = 16}, + [1097] = {.lex_state = 0, .external_lex_state = 2}, [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, @@ -5320,11 +5331,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 56}, + [1107] = {.lex_state = 0, .external_lex_state = 2}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 3}, - [1110] = {.lex_state = 0, .external_lex_state = 2}, - [1111] = {.lex_state = 56}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, @@ -5341,50 +5352,50 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0, .external_lex_state = 2}, + [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 16}, - [1134] = {.lex_state = 0}, + [1133] = {.lex_state = 56}, + [1134] = {.lex_state = 0, .external_lex_state = 2}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, + [1136] = {.lex_state = 0, .external_lex_state = 2}, + [1137] = {.lex_state = 4}, + [1138] = {.lex_state = 0, .external_lex_state = 2}, + [1139] = {.lex_state = 56}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, + [1141] = {.lex_state = 56}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, + [1143] = {.lex_state = 0, .external_lex_state = 2}, + [1144] = {.lex_state = 0, .external_lex_state = 2}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, + [1148] = {.lex_state = 56}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 0, .external_lex_state = 2}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0, .external_lex_state = 2}, + [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0, .external_lex_state = 2}, - [1159] = {.lex_state = 56}, - [1160] = {.lex_state = 56}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0, .external_lex_state = 2}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 56}, - [1163] = {.lex_state = 0, .external_lex_state = 2}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1169] = {.lex_state = 56}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 4}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, @@ -5395,180 +5406,133 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 56}, - [1184] = {.lex_state = 0, .external_lex_state = 2}, - [1185] = {.lex_state = 56}, + [1182] = {.lex_state = 0, .external_lex_state = 2}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, + [1187] = {.lex_state = 56}, [1188] = {.lex_state = 0, .external_lex_state = 2}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 56}, - [1193] = {.lex_state = 0, .external_lex_state = 2}, + [1191] = {.lex_state = 56}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 4}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 56}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0, .external_lex_state = 2}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 56}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, + [1201] = {.lex_state = 0, .external_lex_state = 2}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 56}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 3}, + [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0, .external_lex_state = 2}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 56}, + [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 56}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 56}, + [1219] = {.lex_state = 56}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, + [1221] = {.lex_state = 56}, + [1222] = {.lex_state = 56}, + [1223] = {.lex_state = 56}, [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0, .external_lex_state = 2}, - [1228] = {.lex_state = 0}, + [1226] = {.lex_state = 56}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 56}, [1229] = {.lex_state = 56}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 3}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0, .external_lex_state = 2}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0, .external_lex_state = 2}, + [1230] = {.lex_state = 56}, + [1231] = {.lex_state = 1}, + [1232] = {.lex_state = 56}, + [1233] = {.lex_state = 56}, + [1234] = {.lex_state = 1}, + [1235] = {.lex_state = 56}, + [1236] = {.lex_state = 56}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0, .external_lex_state = 2}, + [1238] = {.lex_state = 56}, + [1239] = {.lex_state = 56}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, + [1241] = {.lex_state = 56}, + [1242] = {.lex_state = 56}, + [1243] = {.lex_state = 56}, + [1244] = {.lex_state = 56}, + [1245] = {.lex_state = 56}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 8}, + [1247] = {.lex_state = 56}, + [1248] = {.lex_state = 56}, + [1249] = {.lex_state = 56}, + [1250] = {.lex_state = 56}, + [1251] = {.lex_state = 56}, + [1252] = {.lex_state = 56}, + [1253] = {.lex_state = 56}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 56}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 56}, - [1259] = {.lex_state = 56}, - [1260] = {.lex_state = 56}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 56}, [1262] = {.lex_state = 56}, - [1263] = {.lex_state = 56}, - [1264] = {.lex_state = 56}, - [1265] = {.lex_state = 56}, + [1263] = {.lex_state = 8}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, [1266] = {.lex_state = 56}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 56}, - [1269] = {.lex_state = 56}, + [1269] = {.lex_state = 0}, [1270] = {.lex_state = 56}, [1271] = {.lex_state = 56}, [1272] = {.lex_state = 56}, [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 56}, + [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 56}, - [1277] = {.lex_state = 56}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, [1278] = {.lex_state = 56}, [1279] = {.lex_state = 56}, - [1280] = {.lex_state = 56}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 56}, - [1282] = {.lex_state = 56}, + [1282] = {.lex_state = 0}, [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 56}, + [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, [1288] = {.lex_state = 56}, [1289] = {.lex_state = 56}, [1290] = {.lex_state = 56}, - [1291] = {.lex_state = 56}, - [1292] = {.lex_state = 56}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, [1293] = {.lex_state = 56}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, + [1294] = {.lex_state = 8}, + [1295] = {.lex_state = 56}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 56}, + [1298] = {.lex_state = 0}, [1299] = {.lex_state = 56}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, + [1301] = {.lex_state = 56}, [1302] = {.lex_state = 56}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 56}, [1305] = {.lex_state = 56}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 56}, - [1310] = {.lex_state = 56}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 56}, - [1313] = {.lex_state = 56}, - [1314] = {.lex_state = 56}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 56}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 56}, - [1324] = {.lex_state = 56}, - [1325] = {.lex_state = 56}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 8}, - [1328] = {.lex_state = 56}, - [1329] = {.lex_state = 56}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 1}, - [1335] = {.lex_state = 56}, - [1336] = {.lex_state = 56}, - [1337] = {.lex_state = 56}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 56}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 56}, - [1342] = {.lex_state = 56}, - [1343] = {.lex_state = 56}, - [1344] = {.lex_state = 56}, - [1345] = {.lex_state = 56}, - [1346] = {.lex_state = 56}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 1}, - [1351] = {.lex_state = 56}, - [1352] = {.lex_state = 56}, - [1353] = {.lex_state = 56}, - [1354] = {.lex_state = 56}, - [1355] = {.lex_state = 56}, + [1306] = {.lex_state = 56}, + [1307] = {.lex_state = 56}, + [1308] = {.lex_state = 56}, }; enum { @@ -5715,71 +5679,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1321), - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_program] = STATE(1240), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(861), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -5838,117 +5802,118 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [2] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1307), - [sym_object_assignment_pattern] = STATE(1052), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_clause] = STATE(922), + [sym_declaration] = STATE(302), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1307), - [sym_spread_element] = STATE(1050), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(564), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [sym_rest_pattern] = STATE(1052), - [sym_method_definition] = STATE(1050), - [sym_pair] = STATE(1050), - [sym_pair_pattern] = STATE(1052), - [sym__property_name] = STATE(1049), - [sym_computed_property_name] = STATE(1049), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(688), - [aux_sym_object_repeat1] = STATE(1048), - [aux_sym_object_pattern_repeat1] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), [sym_identifier] = ACTIONS(89), [anon_sym_export] = ACTIONS(91), [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_import] = ACTIONS(15), + [anon_sym_default] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(105), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(101), + [anon_sym_async] = ACTIONS(114), [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -5959,7 +5924,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(105), + [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -5967,122 +5932,124 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(107), - [anon_sym_get] = ACTIONS(109), - [anon_sym_set] = ACTIONS(109), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(99), }, [3] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1307), - [sym_object_assignment_pattern] = STATE(1052), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_clause] = STATE(922), + [sym_declaration] = STATE(302), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1307), - [sym_spread_element] = STATE(1050), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(564), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [sym_rest_pattern] = STATE(1052), - [sym_method_definition] = STATE(1050), - [sym_pair] = STATE(1050), - [sym_pair_pattern] = STATE(1052), - [sym__property_name] = STATE(1049), - [sym_computed_property_name] = STATE(1049), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(688), - [aux_sym_object_repeat1] = STATE(1048), - [aux_sym_object_pattern_repeat1] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), [sym_identifier] = ACTIONS(89), [anon_sym_export] = ACTIONS(91), [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_import] = ACTIONS(15), + [anon_sym_default] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_import] = ACTIONS(103), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(105), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(101), + [anon_sym_async] = ACTIONS(114), [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -6093,7 +6060,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(105), + [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6101,122 +6068,124 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(107), - [anon_sym_get] = ACTIONS(109), - [anon_sym_set] = ACTIONS(109), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(99), }, [4] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1307), - [sym_object_assignment_pattern] = STATE(1052), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_clause] = STATE(922), + [sym_declaration] = STATE(302), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1307), - [sym_spread_element] = STATE(1016), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(564), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [sym_rest_pattern] = STATE(1052), - [sym_method_definition] = STATE(1016), - [sym_pair] = STATE(1016), - [sym_pair_pattern] = STATE(1052), - [sym__property_name] = STATE(1049), - [sym_computed_property_name] = STATE(1049), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(688), - [aux_sym_object_repeat1] = STATE(1018), - [aux_sym_object_pattern_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [aux_sym_object_repeat1] = STATE(1045), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_import] = ACTIONS(15), + [anon_sym_default] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_import] = ACTIONS(103), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(105), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(119), + [anon_sym_async] = ACTIONS(114), [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -6227,7 +6196,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(105), + [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6235,91 +6204,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(121), - [anon_sym_get] = ACTIONS(123), - [anon_sym_set] = ACTIONS(123), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(99), }, [5] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1307), - [sym_object_assignment_pattern] = STATE(1052), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(19), + [sym_declaration] = STATE(19), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_for_in_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_with_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_debugger_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_empty_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1284), + [sym_object_assignment_pattern] = STATE(1055), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1284), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1307), - [sym_spread_element] = STATE(1016), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(564), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [sym_rest_pattern] = STATE(1052), - [sym_method_definition] = STATE(1016), - [sym_pair] = STATE(1016), - [sym_pair_pattern] = STATE(1052), - [sym__property_name] = STATE(1049), - [sym_computed_property_name] = STATE(1049), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(688), - [aux_sym_object_repeat1] = STATE(1018), - [aux_sym_object_pattern_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(125), - [anon_sym_export] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(93), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1284), + [sym_spread_element] = STATE(990), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(558), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [sym_rest_pattern] = STATE(1055), + [sym_method_definition] = STATE(990), + [sym_pair] = STATE(990), + [sym_pair_pattern] = STATE(1055), + [sym__property_name] = STATE(1057), + [sym_computed_property_name] = STATE(1057), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(686), + [aux_sym_object_repeat1] = STATE(992), + [aux_sym_object_pattern_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(124), + [anon_sym_export] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(132), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6340,14 +6310,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(134), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(129), + [anon_sym_async] = ACTIONS(136), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(138), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6361,7 +6331,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(105), + [sym_number] = ACTIONS(140), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6369,91 +6339,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(131), - [anon_sym_get] = ACTIONS(133), - [anon_sym_set] = ACTIONS(133), + [anon_sym_static] = ACTIONS(142), + [anon_sym_get] = ACTIONS(144), + [anon_sym_set] = ACTIONS(144), }, [6] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1307), - [sym_object_assignment_pattern] = STATE(1052), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1284), + [sym_object_assignment_pattern] = STATE(1055), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1284), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1307), - [sym_spread_element] = STATE(1050), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(564), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [sym_rest_pattern] = STATE(1052), - [sym_method_definition] = STATE(1050), - [sym_pair] = STATE(1050), - [sym_pair_pattern] = STATE(1052), - [sym__property_name] = STATE(1049), - [sym_computed_property_name] = STATE(1049), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(688), - [aux_sym_object_repeat1] = STATE(1048), - [aux_sym_object_pattern_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(89), - [anon_sym_export] = ACTIONS(91), - [anon_sym_STAR] = ACTIONS(93), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1284), + [sym_spread_element] = STATE(1056), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(558), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [sym_rest_pattern] = STATE(1055), + [sym_method_definition] = STATE(1056), + [sym_pair] = STATE(1056), + [sym_pair_pattern] = STATE(1055), + [sym__property_name] = STATE(1057), + [sym_computed_property_name] = STATE(1057), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(686), + [aux_sym_object_repeat1] = STATE(1058), + [aux_sym_object_pattern_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(146), + [anon_sym_export] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(128), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6474,14 +6444,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(134), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(101), + [anon_sym_async] = ACTIONS(152), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(138), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6495,7 +6465,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(105), + [sym_number] = ACTIONS(140), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6503,204 +6473,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(107), - [anon_sym_get] = ACTIONS(109), - [anon_sym_set] = ACTIONS(109), + [anon_sym_static] = ACTIONS(154), + [anon_sym_get] = ACTIONS(156), + [anon_sym_set] = ACTIONS(156), }, [7] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), - [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(137), - [sym_identifier] = ACTIONS(139), - [anon_sym_export] = ACTIONS(142), - [anon_sym_default] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_import] = ACTIONS(150), - [anon_sym_var] = ACTIONS(153), - [anon_sym_let] = ACTIONS(156), - [anon_sym_const] = ACTIONS(156), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_await] = ACTIONS(171), - [anon_sym_while] = ACTIONS(174), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(180), - [anon_sym_with] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_debugger] = ACTIONS(192), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_case] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_class] = ACTIONS(216), - [anon_sym_async] = ACTIONS(219), - [anon_sym_function] = ACTIONS(222), - [anon_sym_new] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_typeof] = ACTIONS(234), - [anon_sym_void] = ACTIONS(234), - [anon_sym_delete] = ACTIONS(234), - [anon_sym_PLUS_PLUS] = ACTIONS(237), - [anon_sym_DASH_DASH] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(240), - [anon_sym_SQUOTE] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(246), - [sym_number] = ACTIONS(249), - [sym_this] = ACTIONS(252), - [sym_super] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_null] = ACTIONS(252), - [sym_undefined] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_static] = ACTIONS(258), - [anon_sym_get] = ACTIONS(258), - [anon_sym_set] = ACTIONS(258), - }, - [8] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1284), + [sym_object_assignment_pattern] = STATE(1055), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1284), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(261), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1284), + [sym_spread_element] = STATE(1056), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(558), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [sym_rest_pattern] = STATE(1055), + [sym_method_definition] = STATE(1056), + [sym_pair] = STATE(1056), + [sym_pair_pattern] = STATE(1055), + [sym__property_name] = STATE(1057), + [sym_computed_property_name] = STATE(1057), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(686), + [aux_sym_object_repeat1] = STATE(1058), + [aux_sym_object_pattern_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(146), + [anon_sym_export] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(128), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(158), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6720,15 +6577,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(261), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(134), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), + [anon_sym_async] = ACTIONS(152), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(138), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6742,7 +6599,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), + [sym_number] = ACTIONS(140), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6750,80 +6607,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(154), + [anon_sym_get] = ACTIONS(156), + [anon_sym_set] = ACTIONS(156), }, - [9] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [8] = { + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_for_in_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_with_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_debugger_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_empty_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1284), + [sym_object_assignment_pattern] = STATE(1055), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1284), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(265), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1284), + [sym_spread_element] = STATE(1056), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(558), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [sym_rest_pattern] = STATE(1055), + [sym_method_definition] = STATE(1056), + [sym_pair] = STATE(1056), + [sym_pair_pattern] = STATE(1055), + [sym__property_name] = STATE(1057), + [sym_computed_property_name] = STATE(1057), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(686), + [aux_sym_object_repeat1] = STATE(1058), + [aux_sym_object_pattern_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(146), + [anon_sym_export] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(128), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6843,15 +6711,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(265), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(134), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), + [anon_sym_async] = ACTIONS(152), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(138), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6865,7 +6733,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), + [sym_number] = ACTIONS(140), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6873,80 +6741,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(154), + [anon_sym_get] = ACTIONS(156), + [anon_sym_set] = ACTIONS(156), }, - [10] = { - [sym_export_statement] = STATE(8), - [sym_declaration] = STATE(8), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_for_in_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_try_statement] = STATE(8), - [sym_with_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_debugger_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_throw_statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [9] = { + [sym_export_statement] = STATE(19), + [sym_declaration] = STATE(19), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_for_in_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_with_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_debugger_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_empty_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1284), + [sym_object_assignment_pattern] = STATE(1055), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1284), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(269), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1284), + [sym_spread_element] = STATE(990), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(558), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [sym_rest_pattern] = STATE(1055), + [sym_method_definition] = STATE(990), + [sym_pair] = STATE(990), + [sym_pair_pattern] = STATE(1055), + [sym__property_name] = STATE(1057), + [sym_computed_property_name] = STATE(1057), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(686), + [aux_sym_object_repeat1] = STATE(992), + [aux_sym_object_pattern_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(162), + [anon_sym_export] = ACTIONS(164), + [anon_sym_STAR] = ACTIONS(128), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(132), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6966,15 +6845,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(269), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(134), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), + [anon_sym_async] = ACTIONS(166), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(138), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6988,7 +6867,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), + [sym_number] = ACTIONS(140), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6996,111 +6875,120 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(168), + [anon_sym_get] = ACTIONS(170), + [anon_sym_set] = ACTIONS(170), }, - [11] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [10] = { + [sym_export_clause] = STATE(922), + [sym_declaration] = STATE(302), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_import] = ACTIONS(15), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(93), + [anon_sym_default] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_import] = ACTIONS(103), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(273), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(172), [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(174), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(105), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), + [anon_sym_async] = ACTIONS(114), [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -7119,109 +7007,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(99), }, - [12] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [11] = { + [sym_export_clause] = STATE(922), + [sym_declaration] = STATE(302), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(565), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_import] = ACTIONS(15), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(93), + [anon_sym_default] = ACTIONS(176), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_import] = ACTIONS(103), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(178), [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(174), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(182), + [anon_sym_function] = ACTIONS(184), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -7240,79 +7140,205 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(99), + }, + [12] = { + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(186), + [sym_identifier] = ACTIONS(188), + [anon_sym_export] = ACTIONS(191), + [anon_sym_default] = ACTIONS(194), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_import] = ACTIONS(199), + [anon_sym_var] = ACTIONS(202), + [anon_sym_let] = ACTIONS(205), + [anon_sym_const] = ACTIONS(205), + [anon_sym_if] = ACTIONS(208), + [anon_sym_switch] = ACTIONS(211), + [anon_sym_for] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(226), + [anon_sym_try] = ACTIONS(229), + [anon_sym_with] = ACTIONS(232), + [anon_sym_break] = ACTIONS(235), + [anon_sym_continue] = ACTIONS(238), + [anon_sym_debugger] = ACTIONS(241), + [anon_sym_return] = ACTIONS(244), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_case] = ACTIONS(194), + [anon_sym_yield] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_class] = ACTIONS(265), + [anon_sym_async] = ACTIONS(268), + [anon_sym_function] = ACTIONS(271), + [anon_sym_new] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(280), + [anon_sym_TILDE] = ACTIONS(280), + [anon_sym_typeof] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_delete] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(286), + [anon_sym_DASH_DASH] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(292), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(295), + [sym_number] = ACTIONS(298), + [sym_this] = ACTIONS(301), + [sym_super] = ACTIONS(301), + [sym_true] = ACTIONS(301), + [sym_false] = ACTIONS(301), + [sym_null] = ACTIONS(301), + [sym_undefined] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(304), + [anon_sym_static] = ACTIONS(307), + [anon_sym_get] = ACTIONS(307), + [anon_sym_set] = ACTIONS(307), }, [13] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7332,6 +7358,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_case] = ACTIONS(310), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7366,74 +7393,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [14] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(281), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7453,6 +7481,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_case] = ACTIONS(314), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7487,74 +7516,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [15] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(318), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7574,6 +7604,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_case] = ACTIONS(318), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7608,74 +7639,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [16] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(13), + [sym_declaration] = STATE(13), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(285), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(322), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7695,6 +7727,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_case] = ACTIONS(322), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7729,74 +7762,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [17] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(19), + [sym_declaration] = STATE(19), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_for_in_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_with_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_debugger_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_empty_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(281), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7850,74 +7883,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [18] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_for_in_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym_with_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_debugger_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym_empty_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(328), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7971,74 +8004,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [19] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(330), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8092,74 +8125,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [20] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8213,74 +8246,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [21] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_for_in_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_with_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_debugger_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_empty_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(334), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8334,74 +8367,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [22] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8457,11 +8490,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_export_statement] = STATE(12), [sym_declaration] = STATE(12), - [sym_import] = STATE(539), + [sym_import] = STATE(535), [sym_import_statement] = STATE(12), [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), [sym_statement_block] = STATE(12), [sym_if_statement] = STATE(12), [sym_switch_statement] = STATE(12), @@ -8478,51 +8511,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(12), [sym_empty_statement] = STATE(12), [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(328), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8576,74 +8609,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [24] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(338), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8697,85 +8730,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [25] = { - [sym_export_statement] = STATE(247), - [sym_declaration] = STATE(246), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(274), - [sym_expression_statement] = STATE(281), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(255), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(261), - [sym_for_statement] = STATE(252), - [sym_for_in_statement] = STATE(297), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(254), - [sym_try_statement] = STATE(256), - [sym_with_statement] = STATE(258), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(262), - [sym_debugger_statement] = STATE(263), - [sym_return_statement] = STATE(264), - [sym_throw_statement] = STATE(266), - [sym_empty_statement] = STATE(267), - [sym_labeled_statement] = STATE(268), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(340), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8786,9 +8821,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8811,74 +8846,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), }, [26] = { - [sym_export_statement] = STATE(247), - [sym_declaration] = STATE(246), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(274), - [sym_expression_statement] = STATE(281), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(255), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(261), - [sym_for_statement] = STATE(252), - [sym_for_in_statement] = STATE(297), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(254), - [sym_try_statement] = STATE(256), - [sym_with_statement] = STATE(258), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(262), - [sym_debugger_statement] = STATE(263), - [sym_return_statement] = STATE(264), - [sym_throw_statement] = STATE(266), - [sym_empty_statement] = STATE(267), - [sym_labeled_statement] = STATE(268), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(310), + [sym_declaration] = STATE(310), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(310), + [sym_expression_statement] = STATE(310), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(310), + [sym_for_statement] = STATE(310), + [sym_for_in_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_do_statement] = STATE(310), + [sym_try_statement] = STATE(310), + [sym_with_statement] = STATE(310), + [sym_break_statement] = STATE(310), + [sym_continue_statement] = STATE(310), + [sym_debugger_statement] = STATE(310), + [sym_return_statement] = STATE(310), + [sym_throw_statement] = STATE(310), + [sym_empty_statement] = STATE(310), + [sym_labeled_statement] = STATE(310), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -8935,85 +8970,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(87), }, [27] = { - [sym_export_statement] = STATE(282), - [sym_declaration] = STATE(282), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_for_in_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_try_statement] = STATE(282), - [sym_with_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_debugger_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_throw_statement] = STATE(282), - [sym_empty_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_export_statement] = STATE(243), + [sym_declaration] = STATE(243), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_for_in_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_try_statement] = STATE(243), + [sym_with_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_debugger_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_throw_statement] = STATE(243), + [sym_empty_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9024,9 +9059,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9049,74 +9084,193 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, [28] = { - [sym_export_statement] = STATE(265), - [sym_declaration] = STATE(265), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(265), + [sym_export_statement] = STATE(270), + [sym_declaration] = STATE(268), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(266), [sym_expression_statement] = STATE(265), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_for_in_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_try_statement] = STATE(265), - [sym_with_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_debugger_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_throw_statement] = STATE(265), - [sym_empty_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(264), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(262), + [sym_for_statement] = STATE(261), + [sym_for_in_statement] = STATE(260), + [sym_while_statement] = STATE(259), + [sym_do_statement] = STATE(257), + [sym_try_statement] = STATE(256), + [sym_with_statement] = STATE(255), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(253), + [sym_debugger_statement] = STATE(252), + [sym_return_statement] = STATE(251), + [sym_throw_statement] = STATE(250), + [sym_empty_statement] = STATE(248), + [sym_labeled_statement] = STATE(247), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_import] = ACTIONS(15), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(348), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(350), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_while] = ACTIONS(352), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(354), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + }, + [29] = { + [sym_export_statement] = STATE(229), + [sym_declaration] = STATE(229), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_for_in_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_try_statement] = STATE(229), + [sym_with_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_debugger_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_throw_statement] = STATE(229), + [sym_empty_statement] = STATE(229), + [sym_labeled_statement] = STATE(229), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9172,86 +9326,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(87), [anon_sym_set] = ACTIONS(87), }, - [29] = { - [sym_export_statement] = STATE(282), - [sym_declaration] = STATE(282), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_for_in_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_try_statement] = STATE(282), - [sym_with_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_debugger_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_throw_statement] = STATE(282), - [sym_empty_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [30] = { + [sym_export_statement] = STATE(273), + [sym_declaration] = STATE(273), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(273), + [sym_expression_statement] = STATE(273), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_switch_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_for_in_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_do_statement] = STATE(273), + [sym_try_statement] = STATE(273), + [sym_with_statement] = STATE(273), + [sym_break_statement] = STATE(273), + [sym_continue_statement] = STATE(273), + [sym_debugger_statement] = STATE(273), + [sym_return_statement] = STATE(273), + [sym_throw_statement] = STATE(273), + [sym_empty_statement] = STATE(273), + [sym_labeled_statement] = STATE(273), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9262,9 +9416,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9287,74 +9441,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [30] = { - [sym_export_statement] = STATE(279), - [sym_declaration] = STATE(279), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_for_in_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_with_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_debugger_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_empty_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [31] = { + [sym_export_statement] = STATE(307), + [sym_declaration] = STATE(307), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_for_in_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_try_statement] = STATE(307), + [sym_with_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_debugger_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_throw_statement] = STATE(307), + [sym_empty_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9410,86 +9564,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(87), [anon_sym_set] = ACTIONS(87), }, - [31] = { - [sym_export_statement] = STATE(279), - [sym_declaration] = STATE(279), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_for_in_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_with_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_debugger_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_empty_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [32] = { + [sym_export_statement] = STATE(310), + [sym_declaration] = STATE(310), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(310), + [sym_expression_statement] = STATE(310), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(310), + [sym_for_statement] = STATE(310), + [sym_for_in_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_do_statement] = STATE(310), + [sym_try_statement] = STATE(310), + [sym_with_statement] = STATE(310), + [sym_break_statement] = STATE(310), + [sym_continue_statement] = STATE(310), + [sym_debugger_statement] = STATE(310), + [sym_return_statement] = STATE(310), + [sym_throw_statement] = STATE(310), + [sym_empty_statement] = STATE(310), + [sym_labeled_statement] = STATE(310), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9500,9 +9654,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9525,90 +9679,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [32] = { - [sym_export_statement] = STATE(308), - [sym_declaration] = STATE(308), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_for_in_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_try_statement] = STATE(308), - [sym_with_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_debugger_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_throw_statement] = STATE(308), - [sym_empty_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [33] = { + [sym_export_statement] = STATE(273), + [sym_declaration] = STATE(273), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(273), + [sym_expression_statement] = STATE(273), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_switch_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_for_in_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_do_statement] = STATE(273), + [sym_try_statement] = STATE(273), + [sym_with_statement] = STATE(273), + [sym_break_statement] = STATE(273), + [sym_continue_statement] = STATE(273), + [sym_debugger_statement] = STATE(273), + [sym_return_statement] = STATE(273), + [sym_throw_statement] = STATE(273), + [sym_empty_statement] = STATE(273), + [sym_labeled_statement] = STATE(273), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9619,9 +9773,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9644,90 +9798,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), }, - [33] = { - [sym_export_statement] = STATE(310), - [sym_declaration] = STATE(311), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(312), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(314), - [sym_if_statement] = STATE(315), - [sym_switch_statement] = STATE(316), - [sym_for_statement] = STATE(317), - [sym_for_in_statement] = STATE(318), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(320), - [sym_try_statement] = STATE(321), - [sym_with_statement] = STATE(322), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(324), - [sym_debugger_statement] = STATE(325), - [sym_return_statement] = STATE(326), - [sym_throw_statement] = STATE(327), - [sym_empty_statement] = STATE(328), - [sym_labeled_statement] = STATE(329), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [34] = { + [sym_export_statement] = STATE(311), + [sym_declaration] = STATE(312), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(313), + [sym_expression_statement] = STATE(314), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(287), + [sym_if_statement] = STATE(316), + [sym_switch_statement] = STATE(317), + [sym_for_statement] = STATE(318), + [sym_for_in_statement] = STATE(319), + [sym_while_statement] = STATE(320), + [sym_do_statement] = STATE(321), + [sym_try_statement] = STATE(322), + [sym_with_statement] = STATE(323), + [sym_break_statement] = STATE(324), + [sym_continue_statement] = STATE(325), + [sym_debugger_statement] = STATE(306), + [sym_return_statement] = STATE(301), + [sym_throw_statement] = STATE(299), + [sym_empty_statement] = STATE(281), + [sym_labeled_statement] = STATE(276), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9738,9 +9892,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9763,90 +9917,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [34] = { - [sym_export_statement] = STATE(280), - [sym_declaration] = STATE(280), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_for_in_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_try_statement] = STATE(280), - [sym_with_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_debugger_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_throw_statement] = STATE(280), - [sym_empty_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [35] = { + [sym_export_statement] = STATE(272), + [sym_declaration] = STATE(272), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_for_in_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_debugger_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_throw_statement] = STATE(272), + [sym_empty_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9857,9 +10011,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9882,90 +10036,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), }, - [35] = { - [sym_export_statement] = STATE(304), - [sym_declaration] = STATE(304), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_switch_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_for_in_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_try_statement] = STATE(304), - [sym_with_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_debugger_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_throw_statement] = STATE(304), - [sym_empty_statement] = STATE(304), - [sym_labeled_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [36] = { + [sym_export_statement] = STATE(311), + [sym_declaration] = STATE(312), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(313), + [sym_expression_statement] = STATE(314), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(287), + [sym_if_statement] = STATE(316), + [sym_switch_statement] = STATE(317), + [sym_for_statement] = STATE(318), + [sym_for_in_statement] = STATE(319), + [sym_while_statement] = STATE(320), + [sym_do_statement] = STATE(321), + [sym_try_statement] = STATE(322), + [sym_with_statement] = STATE(323), + [sym_break_statement] = STATE(324), + [sym_continue_statement] = STATE(325), + [sym_debugger_statement] = STATE(306), + [sym_return_statement] = STATE(301), + [sym_throw_statement] = STATE(299), + [sym_empty_statement] = STATE(281), + [sym_labeled_statement] = STATE(276), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9976,9 +10130,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10001,74 +10155,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), }, - [36] = { - [sym_export_statement] = STATE(304), - [sym_declaration] = STATE(304), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_switch_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_for_in_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_try_statement] = STATE(304), - [sym_with_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_debugger_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_throw_statement] = STATE(304), - [sym_empty_statement] = STATE(304), - [sym_labeled_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [37] = { + [sym_export_statement] = STATE(270), + [sym_declaration] = STATE(268), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(266), + [sym_expression_statement] = STATE(265), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(264), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(262), + [sym_for_statement] = STATE(261), + [sym_for_in_statement] = STATE(260), + [sym_while_statement] = STATE(259), + [sym_do_statement] = STATE(257), + [sym_try_statement] = STATE(256), + [sym_with_statement] = STATE(255), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(253), + [sym_debugger_statement] = STATE(252), + [sym_return_statement] = STATE(251), + [sym_throw_statement] = STATE(250), + [sym_empty_statement] = STATE(248), + [sym_labeled_statement] = STATE(247), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -10124,86 +10278,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(87), [anon_sym_set] = ACTIONS(87), }, - [37] = { - [sym_export_statement] = STATE(265), - [sym_declaration] = STATE(265), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_for_in_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_try_statement] = STATE(265), - [sym_with_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_debugger_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_throw_statement] = STATE(265), - [sym_empty_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [38] = { + [sym_export_statement] = STATE(307), + [sym_declaration] = STATE(307), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_for_in_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_try_statement] = STATE(307), + [sym_with_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_debugger_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_throw_statement] = STATE(307), + [sym_empty_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10214,9 +10368,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10239,90 +10393,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [38] = { - [sym_export_statement] = STATE(232), - [sym_declaration] = STATE(232), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_for_in_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_try_statement] = STATE(232), - [sym_with_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_debugger_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_throw_statement] = STATE(232), - [sym_empty_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [39] = { + [sym_export_statement] = STATE(267), + [sym_declaration] = STATE(267), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_for_in_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_debugger_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_throw_statement] = STATE(267), + [sym_empty_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10333,9 +10487,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10358,90 +10512,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [39] = { - [sym_export_statement] = STATE(310), - [sym_declaration] = STATE(311), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(312), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(314), - [sym_if_statement] = STATE(315), - [sym_switch_statement] = STATE(316), - [sym_for_statement] = STATE(317), - [sym_for_in_statement] = STATE(318), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(320), - [sym_try_statement] = STATE(321), - [sym_with_statement] = STATE(322), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(324), - [sym_debugger_statement] = STATE(325), - [sym_return_statement] = STATE(326), - [sym_throw_statement] = STATE(327), - [sym_empty_statement] = STATE(328), - [sym_labeled_statement] = STATE(329), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [40] = { + [sym_export_statement] = STATE(243), + [sym_declaration] = STATE(243), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_for_in_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_try_statement] = STATE(243), + [sym_with_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_debugger_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_throw_statement] = STATE(243), + [sym_empty_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10452,9 +10606,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10477,90 +10631,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), }, - [40] = { - [sym_export_statement] = STATE(1262), - [sym_declaration] = STATE(1262), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(1262), - [sym_expression_statement] = STATE(1262), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_for_in_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_do_statement] = STATE(1262), - [sym_try_statement] = STATE(1262), - [sym_with_statement] = STATE(1262), - [sym_break_statement] = STATE(1262), - [sym_continue_statement] = STATE(1262), - [sym_debugger_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_throw_statement] = STATE(1262), - [sym_empty_statement] = STATE(1262), - [sym_labeled_statement] = STATE(1262), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [41] = { + [sym_export_statement] = STATE(1295), + [sym_declaration] = STATE(1295), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(1295), + [sym_expression_statement] = STATE(1295), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(1295), + [sym_if_statement] = STATE(1295), + [sym_switch_statement] = STATE(1295), + [sym_for_statement] = STATE(1295), + [sym_for_in_statement] = STATE(1295), + [sym_while_statement] = STATE(1295), + [sym_do_statement] = STATE(1295), + [sym_try_statement] = STATE(1295), + [sym_with_statement] = STATE(1295), + [sym_break_statement] = STATE(1295), + [sym_continue_statement] = STATE(1295), + [sym_debugger_statement] = STATE(1295), + [sym_return_statement] = STATE(1295), + [sym_throw_statement] = STATE(1295), + [sym_empty_statement] = STATE(1295), + [sym_labeled_statement] = STATE(1295), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10571,9 +10725,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10596,90 +10750,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [41] = { - [sym_export_statement] = STATE(1031), - [sym_declaration] = STATE(1031), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(1031), - [sym_expression_statement] = STATE(1031), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(1031), - [sym_if_statement] = STATE(1031), - [sym_switch_statement] = STATE(1031), - [sym_for_statement] = STATE(1031), - [sym_for_in_statement] = STATE(1031), - [sym_while_statement] = STATE(1031), - [sym_do_statement] = STATE(1031), - [sym_try_statement] = STATE(1031), - [sym_with_statement] = STATE(1031), - [sym_break_statement] = STATE(1031), - [sym_continue_statement] = STATE(1031), - [sym_debugger_statement] = STATE(1031), - [sym_return_statement] = STATE(1031), - [sym_throw_statement] = STATE(1031), - [sym_empty_statement] = STATE(1031), - [sym_labeled_statement] = STATE(1031), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [42] = { + [sym_export_statement] = STATE(1012), + [sym_declaration] = STATE(1012), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(1012), + [sym_expression_statement] = STATE(1012), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(1012), + [sym_if_statement] = STATE(1012), + [sym_switch_statement] = STATE(1012), + [sym_for_statement] = STATE(1012), + [sym_for_in_statement] = STATE(1012), + [sym_while_statement] = STATE(1012), + [sym_do_statement] = STATE(1012), + [sym_try_statement] = STATE(1012), + [sym_with_statement] = STATE(1012), + [sym_break_statement] = STATE(1012), + [sym_continue_statement] = STATE(1012), + [sym_debugger_statement] = STATE(1012), + [sym_return_statement] = STATE(1012), + [sym_throw_statement] = STATE(1012), + [sym_empty_statement] = STATE(1012), + [sym_labeled_statement] = STATE(1012), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(305), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(307), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(309), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(311), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10690,9 +10844,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(313), - [anon_sym_async] = ACTIONS(315), - [anon_sym_function] = ACTIONS(317), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10715,74 +10869,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(319), - [anon_sym_get] = ACTIONS(319), - [anon_sym_set] = ACTIONS(319), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [42] = { - [sym_export_statement] = STATE(308), - [sym_declaration] = STATE(308), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_for_in_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_try_statement] = STATE(308), - [sym_with_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_debugger_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_throw_statement] = STATE(308), - [sym_empty_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [43] = { + [sym_export_statement] = STATE(267), + [sym_declaration] = STATE(267), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_for_in_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_debugger_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_throw_statement] = STATE(267), + [sym_empty_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(861), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -10838,86 +10992,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(87), [anon_sym_set] = ACTIONS(87), }, - [43] = { - [sym_export_statement] = STATE(280), - [sym_declaration] = STATE(280), - [sym_import] = STATE(539), - [sym_import_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_statement_block] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_for_in_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_try_statement] = STATE(280), - [sym_with_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_debugger_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_throw_statement] = STATE(280), - [sym_empty_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_class_declaration] = STATE(275), - [sym_function] = STATE(539), - [sym_function_declaration] = STATE(275), - [sym_generator_function] = STATE(539), - [sym_generator_function_declaration] = STATE(275), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [44] = { + [sym_export_statement] = STATE(272), + [sym_declaration] = STATE(272), + [sym_import] = STATE(535), + [sym_import_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_statement_block] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_for_in_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_debugger_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_throw_statement] = STATE(272), + [sym_empty_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(342), + [anon_sym_export] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(346), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(348), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(354), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10928,9 +11082,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(356), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10953,197 +11107,197 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), }, - [44] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(404), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_await] = ACTIONS(335), - [anon_sym_in] = ACTIONS(337), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(337), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_QMARK_DOT] = ACTIONS(329), - [anon_sym_new] = ACTIONS(353), - [anon_sym_QMARK] = ACTIONS(337), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(337), - [anon_sym_GT_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(337), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_instanceof] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [45] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(388), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(374), + [anon_sym_in] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(368), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_QMARK_DOT] = ACTIONS(368), + [anon_sym_new] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_GT_GT_GT] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(376), + [anon_sym_CARET] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(368), + [anon_sym_STAR_STAR] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(368), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_QMARK_QMARK] = ACTIONS(368), + [anon_sym_instanceof] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [45] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(475), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [46] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(474), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_in] = ACTIONS(337), - [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_in] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(376), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(337), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), - [anon_sym_QMARK_DOT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_QMARK_DOT] = ACTIONS(368), [anon_sym_new] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(337), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(337), - [anon_sym_GT_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_GT_GT_GT] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(376), + [anon_sym_CARET] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(376), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_instanceof] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(368), + [anon_sym_STAR_STAR] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(368), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_QMARK_QMARK] = ACTIONS(368), + [anon_sym_instanceof] = ACTIONS(376), [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), @@ -11163,1737 +11317,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - [sym__automatic_semicolon] = ACTIONS(329), - }, - [46] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(574), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_in] = ACTIONS(337), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(337), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_QMARK_DOT] = ACTIONS(329), - [anon_sym_new] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(337), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(337), - [anon_sym_GT_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(337), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_instanceof] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(368), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_default] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), - [anon_sym_var] = ACTIONS(419), - [anon_sym_let] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_else] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_await] = ACTIONS(419), - [anon_sym_in] = ACTIONS(421), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(419), - [anon_sym_try] = ACTIONS(419), - [anon_sym_with] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_debugger] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_throw] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_case] = ACTIONS(419), - [anon_sym_yield] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(421), - [anon_sym_class] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_function] = ACTIONS(419), - [anon_sym_QMARK_DOT] = ACTIONS(423), - [anon_sym_new] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_GT_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(423), - [anon_sym_STAR_STAR] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_EQ_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_QMARK_QMARK] = ACTIONS(423), - [anon_sym_instanceof] = ACTIONS(421), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(419), - [anon_sym_void] = ACTIONS(419), - [anon_sym_delete] = ACTIONS(419), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_in] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_QMARK_DOT] = ACTIONS(368), + [anon_sym_new] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_GT_GT_GT] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(376), + [anon_sym_CARET] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(368), + [anon_sym_STAR_STAR] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(368), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_QMARK_QMARK] = ACTIONS(368), + [anon_sym_instanceof] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [sym_this] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_true] = ACTIONS(419), - [sym_false] = ACTIONS(419), - [sym_null] = ACTIONS(419), - [sym_undefined] = ACTIONS(419), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), - [sym__automatic_semicolon] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(429), - [sym_identifier] = ACTIONS(431), - [anon_sym_export] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_default] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_import] = ACTIONS(431), - [anon_sym_var] = ACTIONS(431), - [anon_sym_let] = ACTIONS(431), - [anon_sym_const] = ACTIONS(431), - [anon_sym_else] = ACTIONS(431), - [anon_sym_if] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(431), - [anon_sym_for] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_await] = ACTIONS(431), - [anon_sym_in] = ACTIONS(433), - [anon_sym_while] = ACTIONS(431), - [anon_sym_do] = ACTIONS(431), - [anon_sym_try] = ACTIONS(431), - [anon_sym_with] = ACTIONS(431), - [anon_sym_break] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(431), - [anon_sym_debugger] = ACTIONS(431), - [anon_sym_return] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_case] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(431), - [anon_sym_function] = ACTIONS(431), - [anon_sym_QMARK_DOT] = ACTIONS(435), - [anon_sym_new] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_GT_GT_GT] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_PERCENT] = ACTIONS(435), - [anon_sym_STAR_STAR] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_EQ_EQ] = ACTIONS(433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_QMARK_QMARK] = ACTIONS(435), - [anon_sym_instanceof] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_typeof] = ACTIONS(431), - [anon_sym_void] = ACTIONS(431), - [anon_sym_delete] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_SQUOTE] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [anon_sym_export] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_default] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_import] = ACTIONS(450), + [anon_sym_var] = ACTIONS(450), + [anon_sym_let] = ACTIONS(450), + [anon_sym_const] = ACTIONS(450), + [anon_sym_else] = ACTIONS(450), + [anon_sym_if] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_for] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_await] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(450), + [anon_sym_try] = ACTIONS(450), + [anon_sym_with] = ACTIONS(450), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_debugger] = ACTIONS(450), + [anon_sym_return] = ACTIONS(450), + [anon_sym_throw] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(452), + [anon_sym_class] = ACTIONS(450), + [anon_sym_async] = ACTIONS(450), + [anon_sym_function] = ACTIONS(450), + [anon_sym_QMARK_DOT] = ACTIONS(454), + [anon_sym_new] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(452), + [anon_sym_GT_GT_GT] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_STAR_STAR] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_QMARK_QMARK] = ACTIONS(454), + [anon_sym_instanceof] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_TILDE] = ACTIONS(448), + [anon_sym_typeof] = ACTIONS(450), + [anon_sym_void] = ACTIONS(450), + [anon_sym_delete] = ACTIONS(450), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_DQUOTE] = ACTIONS(448), + [anon_sym_SQUOTE] = ACTIONS(448), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [sym_this] = ACTIONS(431), - [sym_super] = ACTIONS(431), - [sym_true] = ACTIONS(431), - [sym_false] = ACTIONS(431), - [sym_null] = ACTIONS(431), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(429), - [anon_sym_static] = ACTIONS(431), - [anon_sym_get] = ACTIONS(431), - [anon_sym_set] = ACTIONS(431), - [sym__automatic_semicolon] = ACTIONS(437), + [anon_sym_BQUOTE] = ACTIONS(448), + [sym_number] = ACTIONS(448), + [sym_this] = ACTIONS(450), + [sym_super] = ACTIONS(450), + [sym_true] = ACTIONS(450), + [sym_false] = ACTIONS(450), + [sym_null] = ACTIONS(450), + [sym_undefined] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(448), + [anon_sym_static] = ACTIONS(450), + [anon_sym_get] = ACTIONS(450), + [anon_sym_set] = ACTIONS(450), + [sym__automatic_semicolon] = ACTIONS(458), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_default] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_var] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_else] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_switch] = ACTIONS(441), - [anon_sym_for] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_await] = ACTIONS(441), - [anon_sym_in] = ACTIONS(443), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(441), - [anon_sym_try] = ACTIONS(441), - [anon_sym_with] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_debugger] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_throw] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_case] = ACTIONS(441), - [anon_sym_yield] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_class] = ACTIONS(441), - [anon_sym_async] = ACTIONS(441), - [anon_sym_function] = ACTIONS(441), - [anon_sym_QMARK_DOT] = ACTIONS(445), - [anon_sym_new] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(443), - [anon_sym_GT_GT_GT] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_STAR_STAR] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_QMARK_QMARK] = ACTIONS(445), - [anon_sym_instanceof] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_typeof] = ACTIONS(441), - [anon_sym_void] = ACTIONS(441), - [anon_sym_delete] = ACTIONS(441), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [sym_this] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_true] = ACTIONS(441), - [sym_false] = ACTIONS(441), - [sym_null] = ACTIONS(441), - [sym_undefined] = ACTIONS(441), - [anon_sym_AT] = ACTIONS(439), - [anon_sym_static] = ACTIONS(441), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [sym__automatic_semicolon] = ACTIONS(447), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(451), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_import] = ACTIONS(451), - [anon_sym_var] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_switch] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_await] = ACTIONS(451), - [anon_sym_in] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_do] = ACTIONS(451), - [anon_sym_try] = ACTIONS(451), - [anon_sym_with] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_debugger] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_throw] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(451), - [anon_sym_QMARK_DOT] = ACTIONS(449), - [anon_sym_new] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(449), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_GT_GT_GT] = ACTIONS(449), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_STAR_STAR] = ACTIONS(449), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_EQ_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_QMARK_QMARK] = ACTIONS(449), - [anon_sym_instanceof] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_typeof] = ACTIONS(451), - [anon_sym_void] = ACTIONS(451), - [anon_sym_delete] = ACTIONS(451), - [anon_sym_PLUS_PLUS] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(449), - [sym_number] = ACTIONS(449), - [sym_this] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [sym_null] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [anon_sym_AT] = ACTIONS(449), - [anon_sym_static] = ACTIONS(451), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(451), - [sym__automatic_semicolon] = ACTIONS(449), - }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), - [anon_sym_var] = ACTIONS(419), - [anon_sym_let] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_else] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_await] = ACTIONS(419), - [anon_sym_in] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(419), - [anon_sym_try] = ACTIONS(419), - [anon_sym_with] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_debugger] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_throw] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_case] = ACTIONS(419), - [anon_sym_yield] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(419), - [anon_sym_class] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_function] = ACTIONS(419), - [anon_sym_QMARK_DOT] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_GT_GT_GT] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_QMARK_QMARK] = ACTIONS(417), - [anon_sym_instanceof] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(419), - [anon_sym_void] = ACTIONS(419), - [anon_sym_delete] = ACTIONS(419), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [sym_this] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_true] = ACTIONS(419), - [sym_false] = ACTIONS(419), - [sym_null] = ACTIONS(419), - [sym_undefined] = ACTIONS(419), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), - [sym__automatic_semicolon] = ACTIONS(453), - }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [anon_sym_export] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_default] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_import] = ACTIONS(457), - [anon_sym_var] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [anon_sym_else] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(457), - [anon_sym_for] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(455), - [anon_sym_await] = ACTIONS(457), - [anon_sym_in] = ACTIONS(459), - [anon_sym_while] = ACTIONS(457), - [anon_sym_do] = ACTIONS(457), - [anon_sym_try] = ACTIONS(457), - [anon_sym_with] = ACTIONS(457), - [anon_sym_break] = ACTIONS(457), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_debugger] = ACTIONS(457), - [anon_sym_return] = ACTIONS(457), - [anon_sym_throw] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_case] = ACTIONS(457), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_class] = ACTIONS(457), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(457), - [anon_sym_QMARK_DOT] = ACTIONS(461), - [anon_sym_new] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_GT_GT_GT] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_STAR_STAR] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_EQ_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_QMARK_QMARK] = ACTIONS(461), - [anon_sym_instanceof] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(455), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(455), - [anon_sym_DASH_DASH] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(455), - [sym_number] = ACTIONS(455), - [sym_this] = ACTIONS(457), - [sym_super] = ACTIONS(457), - [sym_true] = ACTIONS(457), - [sym_false] = ACTIONS(457), - [sym_null] = ACTIONS(457), - [sym_undefined] = ACTIONS(457), - [anon_sym_AT] = ACTIONS(455), - [anon_sym_static] = ACTIONS(457), - [anon_sym_get] = ACTIONS(457), - [anon_sym_set] = ACTIONS(457), - [sym__automatic_semicolon] = ACTIONS(463), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(465), - [sym_identifier] = ACTIONS(467), - [anon_sym_export] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_default] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_COMMA] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_import] = ACTIONS(467), - [anon_sym_var] = ACTIONS(467), - [anon_sym_let] = ACTIONS(467), - [anon_sym_const] = ACTIONS(467), - [anon_sym_else] = ACTIONS(467), - [anon_sym_if] = ACTIONS(467), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_for] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(467), - [anon_sym_in] = ACTIONS(467), - [anon_sym_while] = ACTIONS(467), - [anon_sym_do] = ACTIONS(467), - [anon_sym_try] = ACTIONS(467), - [anon_sym_with] = ACTIONS(467), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_debugger] = ACTIONS(467), - [anon_sym_return] = ACTIONS(467), - [anon_sym_throw] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(467), - [anon_sym_GT] = ACTIONS(467), - [anon_sym_SLASH] = ACTIONS(467), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_class] = ACTIONS(467), - [anon_sym_async] = ACTIONS(467), - [anon_sym_function] = ACTIONS(467), - [anon_sym_QMARK_DOT] = ACTIONS(465), - [anon_sym_new] = ACTIONS(467), - [anon_sym_QMARK] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(465), - [anon_sym_PIPE_PIPE] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_GT_GT_GT] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(465), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(465), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_QMARK_QMARK] = ACTIONS(465), - [anon_sym_instanceof] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(467), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(467), - [anon_sym_void] = ACTIONS(467), - [anon_sym_delete] = ACTIONS(467), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(465), - [sym_number] = ACTIONS(465), - [sym_this] = ACTIONS(467), - [sym_super] = ACTIONS(467), - [sym_true] = ACTIONS(467), - [sym_false] = ACTIONS(467), - [sym_null] = ACTIONS(467), - [sym_undefined] = ACTIONS(467), - [anon_sym_AT] = ACTIONS(465), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - [sym__automatic_semicolon] = ACTIONS(465), - }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(469), - [sym_identifier] = ACTIONS(471), - [anon_sym_export] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_default] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_import] = ACTIONS(471), - [anon_sym_var] = ACTIONS(471), - [anon_sym_let] = ACTIONS(471), - [anon_sym_const] = ACTIONS(471), - [anon_sym_else] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_switch] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_await] = ACTIONS(471), - [anon_sym_in] = ACTIONS(473), - [anon_sym_while] = ACTIONS(471), - [anon_sym_do] = ACTIONS(471), - [anon_sym_try] = ACTIONS(471), - [anon_sym_with] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_debugger] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_case] = ACTIONS(471), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_GT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_class] = ACTIONS(471), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_QMARK_DOT] = ACTIONS(475), - [anon_sym_new] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_GT_GT_GT] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(475), - [anon_sym_STAR_STAR] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_QMARK_QMARK] = ACTIONS(475), - [anon_sym_instanceof] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_TILDE] = ACTIONS(469), - [anon_sym_typeof] = ACTIONS(471), - [anon_sym_void] = ACTIONS(471), - [anon_sym_delete] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(469), - [anon_sym_DASH_DASH] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(469), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(469), - [sym_number] = ACTIONS(469), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_null] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(469), - [anon_sym_static] = ACTIONS(471), - [anon_sym_get] = ACTIONS(471), - [anon_sym_set] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(477), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(479), - [sym_identifier] = ACTIONS(481), - [anon_sym_export] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(481), - [anon_sym_var] = ACTIONS(481), - [anon_sym_let] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_else] = ACTIONS(481), - [anon_sym_if] = ACTIONS(481), - [anon_sym_switch] = ACTIONS(481), - [anon_sym_for] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_await] = ACTIONS(481), - [anon_sym_in] = ACTIONS(481), - [anon_sym_while] = ACTIONS(481), - [anon_sym_do] = ACTIONS(481), - [anon_sym_try] = ACTIONS(481), - [anon_sym_with] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_debugger] = ACTIONS(481), - [anon_sym_return] = ACTIONS(481), - [anon_sym_throw] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_case] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_class] = ACTIONS(481), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(481), - [anon_sym_QMARK_DOT] = ACTIONS(479), - [anon_sym_new] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_GT_GT_GT] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(479), - [anon_sym_STAR_STAR] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_QMARK_QMARK] = ACTIONS(479), - [anon_sym_instanceof] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(479), - [anon_sym_typeof] = ACTIONS(481), - [anon_sym_void] = ACTIONS(481), - [anon_sym_delete] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(479), - [sym_this] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_true] = ACTIONS(481), - [sym_false] = ACTIONS(481), - [sym_null] = ACTIONS(481), - [sym_undefined] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_get] = ACTIONS(481), - [anon_sym_set] = ACTIONS(481), - [sym__automatic_semicolon] = ACTIONS(483), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [anon_sym_export] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_default] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_import] = ACTIONS(487), - [anon_sym_var] = ACTIONS(487), - [anon_sym_let] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_else] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_await] = ACTIONS(487), - [anon_sym_in] = ACTIONS(489), - [anon_sym_while] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [anon_sym_try] = ACTIONS(487), - [anon_sym_with] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_debugger] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_throw] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_case] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_class] = ACTIONS(487), - [anon_sym_async] = ACTIONS(487), - [anon_sym_function] = ACTIONS(487), - [anon_sym_QMARK_DOT] = ACTIONS(491), - [anon_sym_new] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP_AMP] = ACTIONS(491), - [anon_sym_PIPE_PIPE] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_GT_GT_GT] = ACTIONS(491), - [anon_sym_LT_LT] = ACTIONS(491), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_CARET] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(489), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_PERCENT] = ACTIONS(491), - [anon_sym_STAR_STAR] = ACTIONS(491), - [anon_sym_LT_EQ] = ACTIONS(491), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(491), - [anon_sym_BANG_EQ] = ACTIONS(489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(491), - [anon_sym_GT_EQ] = ACTIONS(491), - [anon_sym_QMARK_QMARK] = ACTIONS(491), - [anon_sym_instanceof] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym_SQUOTE] = ACTIONS(485), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(485), - [sym_number] = ACTIONS(485), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(485), - [anon_sym_static] = ACTIONS(487), - [anon_sym_get] = ACTIONS(487), - [anon_sym_set] = ACTIONS(487), - [sym__automatic_semicolon] = ACTIONS(493), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(479), - [sym_identifier] = ACTIONS(481), - [anon_sym_export] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(481), - [anon_sym_var] = ACTIONS(481), - [anon_sym_let] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_else] = ACTIONS(481), - [anon_sym_if] = ACTIONS(481), - [anon_sym_switch] = ACTIONS(481), - [anon_sym_for] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_await] = ACTIONS(481), - [anon_sym_in] = ACTIONS(481), - [anon_sym_while] = ACTIONS(481), - [anon_sym_do] = ACTIONS(481), - [anon_sym_try] = ACTIONS(481), - [anon_sym_with] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_debugger] = ACTIONS(481), - [anon_sym_return] = ACTIONS(481), - [anon_sym_throw] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_case] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_class] = ACTIONS(481), - [anon_sym_async] = ACTIONS(481), - [anon_sym_function] = ACTIONS(481), - [anon_sym_QMARK_DOT] = ACTIONS(479), - [anon_sym_new] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_GT_GT_GT] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(479), - [anon_sym_STAR_STAR] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_QMARK_QMARK] = ACTIONS(479), - [anon_sym_instanceof] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(479), - [anon_sym_typeof] = ACTIONS(481), - [anon_sym_void] = ACTIONS(481), - [anon_sym_delete] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [anon_sym_SQUOTE] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_number] = ACTIONS(479), - [sym_this] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_true] = ACTIONS(481), - [sym_false] = ACTIONS(481), - [sym_null] = ACTIONS(481), - [sym_undefined] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_get] = ACTIONS(481), - [anon_sym_set] = ACTIONS(481), - [sym__automatic_semicolon] = ACTIONS(479), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(495), - [sym_identifier] = ACTIONS(497), - [anon_sym_export] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_default] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_import] = ACTIONS(497), - [anon_sym_var] = ACTIONS(497), - [anon_sym_let] = ACTIONS(497), - [anon_sym_const] = ACTIONS(497), - [anon_sym_else] = ACTIONS(497), - [anon_sym_if] = ACTIONS(497), - [anon_sym_switch] = ACTIONS(497), - [anon_sym_for] = ACTIONS(497), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_await] = ACTIONS(497), - [anon_sym_in] = ACTIONS(499), - [anon_sym_while] = ACTIONS(497), - [anon_sym_do] = ACTIONS(497), - [anon_sym_try] = ACTIONS(497), - [anon_sym_with] = ACTIONS(497), - [anon_sym_break] = ACTIONS(497), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_debugger] = ACTIONS(497), - [anon_sym_return] = ACTIONS(497), - [anon_sym_throw] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_case] = ACTIONS(497), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(499), - [anon_sym_class] = ACTIONS(497), - [anon_sym_async] = ACTIONS(497), - [anon_sym_function] = ACTIONS(497), - [anon_sym_QMARK_DOT] = ACTIONS(501), - [anon_sym_new] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_GT_GT] = ACTIONS(499), - [anon_sym_GT_GT_GT] = ACTIONS(501), - [anon_sym_LT_LT] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_PERCENT] = ACTIONS(501), - [anon_sym_STAR_STAR] = ACTIONS(501), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(501), - [anon_sym_QMARK_QMARK] = ACTIONS(501), - [anon_sym_instanceof] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(497), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(495), - [sym_number] = ACTIONS(495), - [sym_this] = ACTIONS(497), - [sym_super] = ACTIONS(497), - [sym_true] = ACTIONS(497), - [sym_false] = ACTIONS(497), - [sym_null] = ACTIONS(497), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_static] = ACTIONS(497), - [anon_sym_get] = ACTIONS(497), - [anon_sym_set] = ACTIONS(497), - [sym__automatic_semicolon] = ACTIONS(503), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(505), - [sym_identifier] = ACTIONS(507), - [anon_sym_export] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_default] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_import] = ACTIONS(507), - [anon_sym_var] = ACTIONS(507), - [anon_sym_let] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_else] = ACTIONS(507), - [anon_sym_if] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [anon_sym_for] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_await] = ACTIONS(507), - [anon_sym_in] = ACTIONS(509), - [anon_sym_while] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [anon_sym_try] = ACTIONS(507), - [anon_sym_with] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_class] = ACTIONS(507), - [anon_sym_async] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_QMARK_DOT] = ACTIONS(511), - [anon_sym_new] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_GT_GT_GT] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_STAR_STAR] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_QMARK_QMARK] = ACTIONS(511), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_typeof] = ACTIONS(507), - [anon_sym_void] = ACTIONS(507), - [anon_sym_delete] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [sym_this] = ACTIONS(507), - [sym_super] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [sym_false] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [sym_undefined] = ACTIONS(507), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_static] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(513), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_export] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_import] = ACTIONS(517), - [anon_sym_var] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(517), - [anon_sym_in] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_with] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_case] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(517), - [anon_sym_class] = ACTIONS(517), - [anon_sym_async] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [anon_sym_QMARK_DOT] = ACTIONS(515), - [anon_sym_new] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_GT_GT_GT] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_AMP] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_PERCENT] = ACTIONS(515), - [anon_sym_STAR_STAR] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(515), - [anon_sym_QMARK_QMARK] = ACTIONS(515), - [anon_sym_instanceof] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_typeof] = ACTIONS(517), - [anon_sym_void] = ACTIONS(517), - [anon_sym_delete] = ACTIONS(517), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_number] = ACTIONS(515), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_null] = ACTIONS(517), - [sym_undefined] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(515), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [anon_sym_export] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_default] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_import] = ACTIONS(521), - [anon_sym_var] = ACTIONS(521), - [anon_sym_let] = ACTIONS(521), - [anon_sym_const] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_await] = ACTIONS(521), - [anon_sym_in] = ACTIONS(523), - [anon_sym_while] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_with] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_debugger] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_case] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(523), - [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(521), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_new] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(523), - [anon_sym_GT_GT_GT] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_STAR_STAR] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(523), - [anon_sym_EQ_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_QMARK_QMARK] = ACTIONS(525), - [anon_sym_instanceof] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_typeof] = ACTIONS(521), - [anon_sym_void] = ACTIONS(521), - [anon_sym_delete] = ACTIONS(521), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(519), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(519), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_null] = ACTIONS(521), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(519), - [anon_sym_static] = ACTIONS(521), - [anon_sym_get] = ACTIONS(521), - [anon_sym_set] = ACTIONS(521), - [sym__automatic_semicolon] = ACTIONS(527), - }, - [62] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1034), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(1036), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [63] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1034), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(1036), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [64] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1034), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(1036), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [65] = { - [sym_import] = STATE(539), - [sym_expression_statement] = STATE(80), - [sym_variable_declaration] = STATE(80), - [sym_lexical_declaration] = STATE(80), - [sym_empty_statement] = STATE(80), - [sym_parenthesized_expression] = STATE(363), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1011), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1011), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(363), - [sym_subscript_expression] = STATE(363), - [sym_assignment_expression] = STATE(550), + [sym_declaration] = STATE(290), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1011), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(547), - [anon_sym_export] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(381), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_default] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(114), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -12916,156 +11595,680 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(549), - [anon_sym_get] = ACTIONS(549), - [anon_sym_set] = ACTIONS(549), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [66] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(515), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1025), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(968), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [50] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [anon_sym_export] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(464), + [anon_sym_var] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_await] = ACTIONS(464), + [anon_sym_in] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_with] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_debugger] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_case] = ACTIONS(464), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_function] = ACTIONS(464), + [anon_sym_QMARK_DOT] = ACTIONS(462), + [anon_sym_new] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_GT_GT_GT] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(462), + [anon_sym_STAR_STAR] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_EQ_EQ] = ACTIONS(464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_QMARK_QMARK] = ACTIONS(462), + [anon_sym_instanceof] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_typeof] = ACTIONS(464), + [anon_sym_void] = ACTIONS(464), + [anon_sym_delete] = ACTIONS(464), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), + [anon_sym_BQUOTE] = ACTIONS(462), + [sym_number] = ACTIONS(462), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_undefined] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_static] = ACTIONS(464), + [anon_sym_get] = ACTIONS(464), + [anon_sym_set] = ACTIONS(464), + [sym__automatic_semicolon] = ACTIONS(466), }, - [67] = { - [sym_import] = STATE(539), - [sym_expression_statement] = STATE(78), - [sym_variable_declaration] = STATE(78), - [sym_lexical_declaration] = STATE(78), - [sym_empty_statement] = STATE(78), - [sym_parenthesized_expression] = STATE(363), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1011), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1011), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(363), - [sym_subscript_expression] = STATE(363), - [sym_assignment_expression] = STATE(550), + [51] = { + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_export] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_default] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_import] = ACTIONS(470), + [anon_sym_var] = ACTIONS(470), + [anon_sym_let] = ACTIONS(470), + [anon_sym_const] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_switch] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_await] = ACTIONS(470), + [anon_sym_in] = ACTIONS(472), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(470), + [anon_sym_try] = ACTIONS(470), + [anon_sym_with] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_debugger] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_throw] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_case] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(472), + [anon_sym_class] = ACTIONS(470), + [anon_sym_async] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_QMARK_DOT] = ACTIONS(474), + [anon_sym_new] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_GT_GT_GT] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_STAR_STAR] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_QMARK_QMARK] = ACTIONS(474), + [anon_sym_instanceof] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(468), + [anon_sym_DASH_DASH] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(468), + [sym_number] = ACTIONS(468), + [sym_this] = ACTIONS(470), + [sym_super] = ACTIONS(470), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_null] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_get] = ACTIONS(470), + [anon_sym_set] = ACTIONS(470), + [sym__automatic_semicolon] = ACTIONS(476), + }, + [52] = { + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_default] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_import] = ACTIONS(480), + [anon_sym_var] = ACTIONS(480), + [anon_sym_let] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_switch] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_await] = ACTIONS(480), + [anon_sym_in] = ACTIONS(482), + [anon_sym_while] = ACTIONS(480), + [anon_sym_do] = ACTIONS(480), + [anon_sym_try] = ACTIONS(480), + [anon_sym_with] = ACTIONS(480), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_debugger] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_throw] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_case] = ACTIONS(480), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_class] = ACTIONS(480), + [anon_sym_async] = ACTIONS(480), + [anon_sym_function] = ACTIONS(480), + [anon_sym_QMARK_DOT] = ACTIONS(484), + [anon_sym_new] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_GT_GT_GT] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_STAR_STAR] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_QMARK_QMARK] = ACTIONS(484), + [anon_sym_instanceof] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(478), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(478), + [sym_number] = ACTIONS(478), + [sym_this] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_true] = ACTIONS(480), + [sym_false] = ACTIONS(480), + [sym_null] = ACTIONS(480), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_get] = ACTIONS(480), + [anon_sym_set] = ACTIONS(480), + [sym__automatic_semicolon] = ACTIONS(486), + }, + [53] = { + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_export] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_import] = ACTIONS(490), + [anon_sym_var] = ACTIONS(490), + [anon_sym_let] = ACTIONS(490), + [anon_sym_const] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_switch] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_await] = ACTIONS(490), + [anon_sym_in] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_do] = ACTIONS(490), + [anon_sym_try] = ACTIONS(490), + [anon_sym_with] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_debugger] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_throw] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_case] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(490), + [anon_sym_class] = ACTIONS(490), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(490), + [anon_sym_QMARK_DOT] = ACTIONS(488), + [anon_sym_new] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_PIPE_PIPE] = ACTIONS(488), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_GT_GT_GT] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_STAR_STAR] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_EQ_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ_EQ] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_QMARK_QMARK] = ACTIONS(488), + [anon_sym_instanceof] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_typeof] = ACTIONS(490), + [anon_sym_void] = ACTIONS(490), + [anon_sym_delete] = ACTIONS(490), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_SQUOTE] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(488), + [sym_number] = ACTIONS(488), + [sym_this] = ACTIONS(490), + [sym_super] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_null] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_static] = ACTIONS(490), + [anon_sym_get] = ACTIONS(490), + [anon_sym_set] = ACTIONS(490), + [sym__automatic_semicolon] = ACTIONS(488), + }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_export] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_default] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_import] = ACTIONS(494), + [anon_sym_var] = ACTIONS(494), + [anon_sym_let] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_else] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_switch] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_await] = ACTIONS(494), + [anon_sym_in] = ACTIONS(496), + [anon_sym_while] = ACTIONS(494), + [anon_sym_do] = ACTIONS(494), + [anon_sym_try] = ACTIONS(494), + [anon_sym_with] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_debugger] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_throw] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_case] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(496), + [anon_sym_class] = ACTIONS(494), + [anon_sym_async] = ACTIONS(494), + [anon_sym_function] = ACTIONS(494), + [anon_sym_QMARK_DOT] = ACTIONS(498), + [anon_sym_new] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_GT_GT_GT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_STAR_STAR] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_QMARK_QMARK] = ACTIONS(498), + [anon_sym_instanceof] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(492), + [anon_sym_DASH_DASH] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_SQUOTE] = ACTIONS(492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(492), + [sym_number] = ACTIONS(492), + [sym_this] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_null] = ACTIONS(494), + [sym_undefined] = ACTIONS(494), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_static] = ACTIONS(494), + [anon_sym_get] = ACTIONS(494), + [anon_sym_set] = ACTIONS(494), + [sym__automatic_semicolon] = ACTIONS(500), + }, + [55] = { + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [anon_sym_export] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_default] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_import] = ACTIONS(504), + [anon_sym_var] = ACTIONS(504), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_await] = ACTIONS(504), + [anon_sym_in] = ACTIONS(506), + [anon_sym_while] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_with] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_debugger] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_case] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_class] = ACTIONS(504), + [anon_sym_async] = ACTIONS(504), + [anon_sym_function] = ACTIONS(504), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_new] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_GT_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_QMARK_QMARK] = ACTIONS(508), + [anon_sym_instanceof] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_typeof] = ACTIONS(504), + [anon_sym_void] = ACTIONS(504), + [anon_sym_delete] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(502), + [sym_number] = ACTIONS(502), + [sym_this] = ACTIONS(504), + [sym_super] = ACTIONS(504), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_null] = ACTIONS(504), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(502), + [anon_sym_static] = ACTIONS(504), + [anon_sym_get] = ACTIONS(504), + [anon_sym_set] = ACTIONS(504), + [sym__automatic_semicolon] = ACTIONS(510), + }, + [56] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [anon_sym_export] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(464), + [anon_sym_var] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_await] = ACTIONS(464), + [anon_sym_in] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_with] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_debugger] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_case] = ACTIONS(464), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_function] = ACTIONS(464), + [anon_sym_QMARK_DOT] = ACTIONS(462), + [anon_sym_new] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_GT_GT_GT] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(462), + [anon_sym_STAR_STAR] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_EQ_EQ] = ACTIONS(464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_QMARK_QMARK] = ACTIONS(462), + [anon_sym_instanceof] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_typeof] = ACTIONS(464), + [anon_sym_void] = ACTIONS(464), + [anon_sym_delete] = ACTIONS(464), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(462), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(462), + [sym_number] = ACTIONS(462), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_undefined] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_static] = ACTIONS(464), + [anon_sym_get] = ACTIONS(464), + [anon_sym_set] = ACTIONS(464), + [sym__automatic_semicolon] = ACTIONS(462), + }, + [57] = { + [sym_declaration] = STATE(290), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1011), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(547), - [anon_sym_export] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(381), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_default] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(182), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13088,903 +12291,332 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(549), - [anon_sym_get] = ACTIONS(549), - [anon_sym_set] = ACTIONS(549), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [68] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1034), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(1036), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [69] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(515), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1025), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(968), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [70] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1025), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(968), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [71] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1140), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_spread_element] = STATE(1022), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(1027), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [72] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1026), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(930), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_pattern_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(570), - [anon_sym_export] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(582), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - }, - [73] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(549), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1030), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1300), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(921), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [74] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(919), - [sym_assignment_pattern] = STATE(1030), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(919), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(919), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1252), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(921), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - }, - [75] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(526), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_spread_element] = STATE(1073), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(590), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [58] = { + [ts_builtin_sym_end] = ACTIONS(514), + [sym_identifier] = ACTIONS(516), + [anon_sym_export] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_default] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_import] = ACTIONS(516), + [anon_sym_var] = ACTIONS(516), + [anon_sym_let] = ACTIONS(516), + [anon_sym_const] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_await] = ACTIONS(516), + [anon_sym_in] = ACTIONS(518), + [anon_sym_while] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_with] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_debugger] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_case] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_class] = ACTIONS(516), + [anon_sym_async] = ACTIONS(516), + [anon_sym_function] = ACTIONS(516), + [anon_sym_QMARK_DOT] = ACTIONS(520), + [anon_sym_new] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(520), + [anon_sym_PIPE_PIPE] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_GT_GT_GT] = ACTIONS(520), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_PERCENT] = ACTIONS(520), + [anon_sym_STAR_STAR] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ_EQ] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_QMARK_QMARK] = ACTIONS(520), + [anon_sym_instanceof] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_typeof] = ACTIONS(516), + [anon_sym_void] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(514), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_BQUOTE] = ACTIONS(514), + [sym_number] = ACTIONS(514), + [sym_this] = ACTIONS(516), + [sym_super] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [sym_undefined] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(514), + [anon_sym_static] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [sym__automatic_semicolon] = ACTIONS(522), }, - [76] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_spread_element] = STATE(1022), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [59] = { + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_export] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_default] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_import] = ACTIONS(526), + [anon_sym_var] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_await] = ACTIONS(526), + [anon_sym_in] = ACTIONS(528), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(526), + [anon_sym_try] = ACTIONS(526), + [anon_sym_with] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_debugger] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_case] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(528), + [anon_sym_class] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(526), + [anon_sym_QMARK_DOT] = ACTIONS(530), + [anon_sym_new] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_GT_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_QMARK_QMARK] = ACTIONS(530), + [anon_sym_instanceof] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_typeof] = ACTIONS(526), + [anon_sym_void] = ACTIONS(526), + [anon_sym_delete] = ACTIONS(526), + [anon_sym_PLUS_PLUS] = ACTIONS(524), + [anon_sym_DASH_DASH] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(524), + [anon_sym_SQUOTE] = ACTIONS(524), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_BQUOTE] = ACTIONS(524), + [sym_number] = ACTIONS(524), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_static] = ACTIONS(526), + [anon_sym_get] = ACTIONS(526), + [anon_sym_set] = ACTIONS(526), + [sym__automatic_semicolon] = ACTIONS(532), }, - [77] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(531), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_spread_element] = STATE(1065), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [aux_sym_array_repeat1] = STATE(1062), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [60] = { + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_import] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [anon_sym_let] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_await] = ACTIONS(536), + [anon_sym_in] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_with] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_debugger] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_case] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_async] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [anon_sym_QMARK_DOT] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_AMP_AMP] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_GT_GT_GT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_STAR_STAR] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(534), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_QMARK_QMARK] = ACTIONS(534), + [anon_sym_instanceof] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_typeof] = ACTIONS(536), + [anon_sym_void] = ACTIONS(536), + [anon_sym_delete] = ACTIONS(536), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_BQUOTE] = ACTIONS(534), + [sym_number] = ACTIONS(534), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_undefined] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(534), + [anon_sym_static] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [sym__automatic_semicolon] = ACTIONS(534), }, - [78] = { - [sym_import] = STATE(539), - [sym_expression_statement] = STATE(86), - [sym_empty_statement] = STATE(86), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [61] = { + [sym_declaration] = STATE(290), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(27), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_default] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(538), [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(114), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14007,146 +12639,504 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [79] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_spread_element] = STATE(1303), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1303), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [62] = { + [ts_builtin_sym_end] = ACTIONS(541), + [sym_identifier] = ACTIONS(543), + [anon_sym_export] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_default] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(543), + [anon_sym_var] = ACTIONS(543), + [anon_sym_let] = ACTIONS(543), + [anon_sym_const] = ACTIONS(543), + [anon_sym_else] = ACTIONS(543), + [anon_sym_if] = ACTIONS(543), + [anon_sym_switch] = ACTIONS(543), + [anon_sym_for] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_await] = ACTIONS(543), + [anon_sym_in] = ACTIONS(545), + [anon_sym_while] = ACTIONS(543), + [anon_sym_do] = ACTIONS(543), + [anon_sym_try] = ACTIONS(543), + [anon_sym_with] = ACTIONS(543), + [anon_sym_break] = ACTIONS(543), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_debugger] = ACTIONS(543), + [anon_sym_return] = ACTIONS(543), + [anon_sym_throw] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_case] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_DOT] = ACTIONS(545), + [anon_sym_class] = ACTIONS(543), + [anon_sym_async] = ACTIONS(543), + [anon_sym_function] = ACTIONS(543), + [anon_sym_QMARK_DOT] = ACTIONS(547), + [anon_sym_new] = ACTIONS(543), + [anon_sym_QMARK] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_GT_GT_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(547), + [anon_sym_STAR_STAR] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(545), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [anon_sym_instanceof] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_typeof] = ACTIONS(543), + [anon_sym_void] = ACTIONS(543), + [anon_sym_delete] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(541), + [anon_sym_DASH_DASH] = ACTIONS(541), + [anon_sym_DQUOTE] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(541), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(541), + [sym_number] = ACTIONS(541), + [sym_this] = ACTIONS(543), + [sym_super] = ACTIONS(543), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_null] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym__automatic_semicolon] = ACTIONS(549), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(551), + [sym_identifier] = ACTIONS(553), + [anon_sym_export] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_default] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_import] = ACTIONS(553), + [anon_sym_var] = ACTIONS(553), + [anon_sym_let] = ACTIONS(553), + [anon_sym_const] = ACTIONS(553), + [anon_sym_else] = ACTIONS(553), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(553), + [anon_sym_for] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_await] = ACTIONS(553), + [anon_sym_in] = ACTIONS(555), + [anon_sym_while] = ACTIONS(553), + [anon_sym_do] = ACTIONS(553), + [anon_sym_try] = ACTIONS(553), + [anon_sym_with] = ACTIONS(553), + [anon_sym_break] = ACTIONS(553), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_debugger] = ACTIONS(553), + [anon_sym_return] = ACTIONS(553), + [anon_sym_throw] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_case] = ACTIONS(553), + [anon_sym_yield] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_class] = ACTIONS(553), + [anon_sym_async] = ACTIONS(553), + [anon_sym_function] = ACTIONS(553), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_new] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_GT_GT_GT] = ACTIONS(557), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(557), + [anon_sym_instanceof] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(551), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(551), + [sym_number] = ACTIONS(551), + [sym_this] = ACTIONS(553), + [sym_super] = ACTIONS(553), + [sym_true] = ACTIONS(553), + [sym_false] = ACTIONS(553), + [sym_null] = ACTIONS(553), + [sym_undefined] = ACTIONS(553), + [anon_sym_AT] = ACTIONS(551), + [anon_sym_static] = ACTIONS(553), + [anon_sym_get] = ACTIONS(553), + [anon_sym_set] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(559), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(561), + [sym_identifier] = ACTIONS(563), + [anon_sym_export] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_default] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_import] = ACTIONS(563), + [anon_sym_var] = ACTIONS(563), + [anon_sym_let] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_await] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_try] = ACTIONS(563), + [anon_sym_with] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_debugger] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_case] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_class] = ACTIONS(563), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_new] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_instanceof] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_typeof] = ACTIONS(563), + [anon_sym_void] = ACTIONS(563), + [anon_sym_delete] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(561), + [sym_number] = ACTIONS(561), + [sym_this] = ACTIONS(563), + [sym_super] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_static] = ACTIONS(563), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(563), + [sym__automatic_semicolon] = ACTIONS(561), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [anon_sym_export] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_import] = ACTIONS(450), + [anon_sym_var] = ACTIONS(450), + [anon_sym_let] = ACTIONS(450), + [anon_sym_const] = ACTIONS(450), + [anon_sym_else] = ACTIONS(450), + [anon_sym_if] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_for] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_await] = ACTIONS(450), + [anon_sym_in] = ACTIONS(450), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(450), + [anon_sym_try] = ACTIONS(450), + [anon_sym_with] = ACTIONS(450), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_debugger] = ACTIONS(450), + [anon_sym_return] = ACTIONS(450), + [anon_sym_throw] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_class] = ACTIONS(450), + [anon_sym_async] = ACTIONS(450), + [anon_sym_function] = ACTIONS(450), + [anon_sym_QMARK_DOT] = ACTIONS(448), + [anon_sym_new] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_GT_GT_GT] = ACTIONS(448), + [anon_sym_LT_LT] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_STAR_STAR] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(448), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_QMARK_QMARK] = ACTIONS(448), + [anon_sym_instanceof] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_TILDE] = ACTIONS(448), + [anon_sym_typeof] = ACTIONS(450), + [anon_sym_void] = ACTIONS(450), + [anon_sym_delete] = ACTIONS(450), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_DQUOTE] = ACTIONS(448), + [anon_sym_SQUOTE] = ACTIONS(448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(448), + [sym_number] = ACTIONS(448), + [sym_this] = ACTIONS(450), + [sym_super] = ACTIONS(450), + [sym_true] = ACTIONS(450), + [sym_false] = ACTIONS(450), + [sym_null] = ACTIONS(450), + [sym_undefined] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(448), + [anon_sym_static] = ACTIONS(450), + [anon_sym_get] = ACTIONS(450), + [anon_sym_set] = ACTIONS(450), + [sym__automatic_semicolon] = ACTIONS(565), + }, + [66] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(511), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(1007), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(1009), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [80] = { - [sym_import] = STATE(539), - [sym_expression_statement] = STATE(85), - [sym_empty_statement] = STATE(85), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [67] = { + [sym_import] = STATE(535), + [sym_expression_statement] = STATE(89), + [sym_variable_declaration] = STATE(89), + [sym_lexical_declaration] = STATE(89), + [sym_empty_statement] = STATE(89), + [sym_parenthesized_expression] = STATE(356), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1001), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1001), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(356), + [sym_subscript_expression] = STATE(356), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1156), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1001), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14169,224 +13159,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [81] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(559), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_spread_element] = STATE(1347), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1347), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [82] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(558), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(975), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(975), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(975), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [sym_pattern] = STATE(1142), - [sym_rest_pattern] = STATE(895), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(602), - [anon_sym_export] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(606), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(604), - [anon_sym_get] = ACTIONS(604), - [anon_sym_set] = ACTIONS(604), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), }, - [83] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [68] = { + [sym_declaration] = STATE(237), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1234), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(608), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(182), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14409,301 +13245,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - [sym__automatic_semicolon] = ACTIONS(608), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [84] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(380), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1045), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1045), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(380), - [sym_subscript_expression] = STATE(380), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1045), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_import] = ACTIONS(331), - [anon_sym_var] = ACTIONS(616), - [anon_sym_let] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(620), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - }, - [85] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1295), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(622), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [86] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(626), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1287), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [87] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [69] = { + [sym_declaration] = STATE(298), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(530), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1091), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(114), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14726,218 +13331,242 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [88] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(472), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(401), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [70] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(519), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(973), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(976), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [89] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(471), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(398), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [71] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(520), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(973), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(976), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [90] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(554), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(450), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [72] = { + [sym_import] = STATE(535), + [sym_expression_statement] = STATE(86), + [sym_variable_declaration] = STATE(86), + [sym_lexical_declaration] = STATE(86), + [sym_empty_statement] = STATE(86), + [sym_parenthesized_expression] = STATE(356), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1001), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1001), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(356), + [sym_subscript_expression] = STATE(356), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1001), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14960,842 +13589,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [91] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(408), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(958), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [92] = { - [sym_export_clause] = STATE(927), - [sym_declaration] = STATE(293), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_class_declaration] = STATE(275), - [sym_function_declaration] = STATE(275), - [sym_generator_function_declaration] = STATE(275), - [sym_decorator] = STATE(750), - [aux_sym_export_statement_repeat1] = STATE(922), - [aux_sym_object_repeat1] = STATE(976), - [aux_sym_object_pattern_repeat1] = STATE(978), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(85), - [sym__automatic_semicolon] = ACTIONS(636), - }, - [93] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(477), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(399), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [94] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1283), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [95] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(440), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(389), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [96] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(400), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(664), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [97] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(471), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(622), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [98] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(477), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [99] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1284), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [100] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(440), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(542), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), }, - [101] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(592), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(449), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [73] = { + [sym_declaration] = STATE(298), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(530), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(180), + [anon_sym_async] = ACTIONS(182), + [anon_sym_function] = ACTIONS(184), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15818,218 +13675,328 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [102] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(472), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [74] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(519), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(973), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(976), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [103] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(479), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [75] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(511), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(1007), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(1009), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [104] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(605), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(433), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [76] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(511), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(1007), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(1009), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + }, + [77] = { + [sym_declaration] = STATE(237), + [sym_import] = STATE(535), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_class_declaration] = STATE(309), + [sym_function] = STATE(535), + [sym_function_declaration] = STATE(309), + [sym_generator_function] = STATE(535), + [sym_generator_function_declaration] = STATE(309), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(114), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16052,452 +14019,731 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [105] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1286), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [78] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(511), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(1007), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(1009), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [106] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(400), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(668), - [anon_sym_export] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(664), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(672), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [79] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(974), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(933), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_pattern_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_RBRACK] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(617), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(670), - [anon_sym_get] = ACTIONS(670), - [anon_sym_set] = ACTIONS(670), + [anon_sym_static] = ACTIONS(607), + [anon_sym_get] = ACTIONS(607), + [anon_sym_set] = ACTIONS(607), }, - [107] = { - [sym_export_clause] = STATE(927), - [sym_declaration] = STATE(293), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_class_declaration] = STATE(275), - [sym_function_declaration] = STATE(275), - [sym_generator_function_declaration] = STATE(275), - [sym_decorator] = STATE(750), - [aux_sym_export_statement_repeat1] = STATE(922), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), + [80] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(504), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(1085), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_spread_element] = STATE(970), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(971), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [108] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(572), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1349), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [81] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(602), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(988), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1216), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(942), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [109] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(553), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1340), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [82] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(568), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(940), + [sym_assignment_pattern] = STATE(988), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(940), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(940), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1286), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(942), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(577), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), }, - [110] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(607), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(501), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [83] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(504), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_spread_element] = STATE(970), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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(628), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [84] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(525), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_spread_element] = STATE(1051), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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(628), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [85] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(524), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_spread_element] = STATE(986), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [aux_sym_array_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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(628), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [86] = { + [sym_import] = STATE(535), + [sym_expression_statement] = STATE(93), + [sym_empty_statement] = STATE(93), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16520,140 +14766,227 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [111] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1326), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [87] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(622), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_spread_element] = STATE(1273), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1273), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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(628), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [112] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(609), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(503), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [88] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(544), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_spread_element] = STATE(1285), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1285), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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(628), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [89] = { + [sym_import] = STATE(535), + [sym_expression_statement] = STATE(94), + [sym_empty_statement] = STATE(94), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1144), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16676,62 +15009,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [113] = { - [sym_import] = STATE(539), - [sym_statement_block] = STATE(557), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(429), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [90] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1067), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(640), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16754,842 +15088,537 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [114] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(555), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1315), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [115] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(479), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(407), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [116] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(400), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [117] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(454), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(390), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(640), }, - [118] = { - [sym_import] = STATE(426), - [sym_statement_block] = STATE(454), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(618), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [91] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(562), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(997), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(997), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(997), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [sym_pattern] = STATE(1063), + [sym_rest_pattern] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(642), + [anon_sym_export] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(646), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(644), + [anon_sym_get] = ACTIONS(644), + [anon_sym_set] = ACTIONS(644), }, - [119] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(568), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1348), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [92] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(375), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(981), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(981), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(375), + [sym_subscript_expression] = STATE(375), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(981), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(370), + [anon_sym_var] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(658), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), }, - [120] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1338), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [93] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1256), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [121] = { - [sym_export_clause] = STATE(927), - [sym_declaration] = STATE(293), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_class_declaration] = STATE(275), - [sym_function_declaration] = STATE(275), - [sym_generator_function_declaration] = STATE(275), - [sym_decorator] = STATE(750), - [aux_sym_export_statement_repeat1] = STATE(922), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), + [94] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(552), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1300), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [122] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(367), - [sym_expression] = STATE(639), - [sym_primary_expression] = STATE(518), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(367), - [sym_subscript_expression] = STATE(367), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(680), - [anon_sym_export] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(684), - [anon_sym_function] = ACTIONS(389), - [anon_sym_new] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [95] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(489), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(682), - [anon_sym_get] = ACTIONS(682), - [anon_sym_set] = ACTIONS(682), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [123] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(619), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1273), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [96] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(462), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [124] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(523), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [97] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(548), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(425), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_sequence_expression] = STATE(1239), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17612,755 +15641,842 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [125] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_sequence_expression] = STATE(1252), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [98] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(540), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1280), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [126] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(488), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), - [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [99] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1274), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [127] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(386), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [100] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(568), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1286), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [128] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(498), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [101] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(485), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(397), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [129] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [102] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(485), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(560), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [130] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(412), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [103] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(577), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1237), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [131] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(395), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [104] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(554), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1296), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [132] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(576), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [105] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(564), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1275), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [133] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(413), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [106] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(489), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(390), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [134] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [107] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(618), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1246), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [108] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(598), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(460), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18383,61 +16499,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [135] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(521), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [109] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(505), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1182), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18460,215 +16577,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [136] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(415), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [137] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(383), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [138] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(499), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [110] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(616), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(451), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18691,215 +16655,140 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [139] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(383), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [140] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(621), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [111] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(392), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(938), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [141] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(483), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [112] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(527), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_sequence_expression] = STATE(1107), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18922,292 +16811,296 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [142] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(396), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [113] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(462), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(399), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [143] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(409), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [114] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(445), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(606), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [144] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(558), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [115] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(555), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1292), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [145] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(473), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [116] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(600), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(457), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19230,600 +17123,218 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [146] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(391), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [147] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(406), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [148] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [149] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(387), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [150] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(597), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [151] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(563), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [117] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(354), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(503), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(354), + [sym_subscript_expression] = STATE(354), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(670), + [anon_sym_export] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(676), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(678), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(672), + [anon_sym_get] = ACTIONS(672), + [anon_sym_set] = ACTIONS(672), }, - [152] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [118] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(445), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(402), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [153] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(457), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [119] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(592), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(463), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19846,754 +17357,1150 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [154] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(561), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [155] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(498), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(992), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(992), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(992), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [120] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(401), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [156] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [121] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(434), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(408), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [157] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(573), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [122] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(434), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(611), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [158] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(543), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [123] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(426), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(613), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [159] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [124] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(401), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(682), + [anon_sym_export] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(686), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(684), + [anon_sym_get] = ACTIONS(684), + [anon_sym_set] = ACTIONS(684), }, - [160] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(584), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [125] = { + [sym_import] = STATE(535), + [sym_statement_block] = STATE(589), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(443), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + }, + [126] = { + [sym_import] = STATE(424), + [sym_statement_block] = STATE(426), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(403), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [161] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [127] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(557), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1282), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [162] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(393), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [128] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(549), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1303), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [163] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(496), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [129] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(401), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [130] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(610), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_sequence_expression] = STATE(1260), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [131] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(378), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [132] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(567), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [133] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(385), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [134] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(516), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20616,215 +18523,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [164] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(414), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - }, - [165] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(388), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [166] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [135] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(437), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20847,292 +18600,292 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [167] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(615), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [136] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(624), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [168] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [137] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(416), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [169] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [138] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [170] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(487), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [139] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(454), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21155,61 +18908,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [171] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(448), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [140] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(468), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21232,292 +18985,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [172] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(387), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), - }, - [173] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(535), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [174] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(386), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [141] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(395), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [175] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(469), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [142] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(446), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21540,138 +19139,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), - }, - [176] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(405), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [177] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), + [143] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), [sym_expression] = STATE(447), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21694,138 +19216,292 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [178] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), + [144] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(562), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [145] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), [sym_expression] = STATE(630), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [179] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(482), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [146] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [147] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(492), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21848,61 +19524,215 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [180] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(427), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [148] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(625), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [149] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(410), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(982), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(982), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(982), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(688), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [150] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(429), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21925,61 +19755,1062 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [181] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(446), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [151] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(601), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [152] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(594), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [153] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(405), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [154] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(406), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [155] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(628), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [156] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(380), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [157] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(404), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [158] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(398), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [159] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(396), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [160] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(383), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [161] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(394), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [162] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(515), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [163] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(391), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [164] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(449), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22002,138 +20833,1139 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [182] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(498), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1070), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1070), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1070), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(690), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [165] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(389), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, - [183] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(445), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [166] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(386), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [167] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [168] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(377), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [169] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(379), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [170] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(559), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [171] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(400), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [172] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(563), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [173] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(379), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [174] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(378), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [175] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(377), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [176] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(410), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [177] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(579), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [178] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1267), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1267), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1267), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(360), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), + }, + [179] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(423), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22156,138 +21988,215 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [184] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [180] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(580), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [185] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(432), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [181] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(581), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [182] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(478), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22310,138 +22219,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [186] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(544), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [183] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(473), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [187] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [184] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(427), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22464,61 +22373,215 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [188] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(439), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [185] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [186] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [187] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(432), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22541,138 +22604,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, - [189] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(385), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [188] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [190] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(442), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [189] = { + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(435), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22695,292 +22758,369 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), + }, + [190] = { + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(631), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [191] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(350), [sym_expression] = STATE(410), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1023), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1023), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(350), + [sym_subscript_expression] = STATE(350), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(721), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1023), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1297), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(690), + [anon_sym_export] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = 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_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_typeof] = ACTIONS(398), + [anon_sym_void] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(362), + [anon_sym_get] = ACTIONS(362), + [anon_sym_set] = ACTIONS(362), }, [192] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(355), - [sym_expression] = STATE(385), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1333), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1333), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(355), - [sym_subscript_expression] = STATE(355), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(714), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1333), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1322), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(321), - [anon_sym_export] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(335), - [anon_sym_yield] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_typeof] = ACTIONS(359), - [anon_sym_void] = ACTIONS(359), - [anon_sym_delete] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(629), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(323), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [193] = { - [sym_import] = STATE(426), - [sym_parenthesized_expression] = STATE(340), - [sym_expression] = STATE(632), - [sym_primary_expression] = STATE(425), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(426), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(426), - [sym_array_pattern] = STATE(1317), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(768), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(426), - [sym_function] = STATE(426), - [sym_generator_function] = STATE(426), - [sym_arrow_function] = STATE(426), - [sym_call_expression] = STATE(426), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(340), - [sym_subscript_expression] = STATE(340), - [sym_assignment_expression] = STATE(424), - [sym__augmented_assignment_lhs] = STATE(712), - [sym_augmented_assignment_expression] = STATE(424), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(426), - [sym_template_string] = STATE(426), - [sym_regex] = STATE(426), - [sym_meta_property] = STATE(426), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1267), - [aux_sym_export_statement_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(391), - [anon_sym_export] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_import] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_await] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_class] = ACTIONS(347), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(351), - [anon_sym_new] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(413), - [anon_sym_void] = ACTIONS(413), - [anon_sym_delete] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(438), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [sym_this] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [sym_null] = ACTIONS(371), - [sym_undefined] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, [194] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(443), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(439), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23003,61 +23143,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, [195] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(362), - [sym_expression] = STATE(444), - [sym_primary_expression] = STATE(546), - [sym_yield_expression] = STATE(550), - [sym_object] = STATE(539), - [sym_object_pattern] = STATE(1320), - [sym_array] = STATE(539), - [sym_array_pattern] = STATE(1320), - [sym_jsx_element] = STATE(550), - [sym_jsx_fragment] = STATE(550), - [sym_jsx_opening_element] = STATE(772), - [sym_jsx_self_closing_element] = STATE(550), - [sym_class] = STATE(539), - [sym_function] = STATE(539), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(550), - [sym_await_expression] = STATE(550), - [sym_member_expression] = STATE(362), - [sym_subscript_expression] = STATE(362), - [sym_assignment_expression] = STATE(550), + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(440), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), [sym__augmented_assignment_lhs] = STATE(720), - [sym_augmented_assignment_expression] = STATE(550), - [sym__destructuring_pattern] = STATE(1320), - [sym_ternary_expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(750), - [sym_formal_parameters] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(373), - [anon_sym_export] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_import] = ACTIONS(381), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(385), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(389), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23080,899 +23220,904 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(375), - [anon_sym_get] = ACTIONS(375), - [anon_sym_set] = ACTIONS(375), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, [196] = { - [sym_export_clause] = STATE(927), - [sym_declaration] = STATE(293), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_class_declaration] = STATE(275), - [sym_function_declaration] = STATE(275), - [sym_generator_function_declaration] = STATE(275), - [sym_decorator] = STATE(750), - [aux_sym_export_statement_repeat1] = STATE(955), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_class] = ACTIONS(696), - [anon_sym_async] = ACTIONS(698), - [anon_sym_function] = ACTIONS(700), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(441), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, [197] = { - [sym_export_clause] = STATE(927), - [sym_declaration] = STATE(293), - [sym_variable_declaration] = STATE(275), - [sym_lexical_declaration] = STATE(275), - [sym_class_declaration] = STATE(275), - [sym_function_declaration] = STATE(275), - [sym_generator_function_declaration] = STATE(275), - [sym_decorator] = STATE(750), - [aux_sym_export_statement_repeat1] = STATE(922), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(702), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), + [sym_import] = STATE(535), + [sym_parenthesized_expression] = STATE(360), + [sym_expression] = STATE(442), + [sym_primary_expression] = STATE(578), + [sym_yield_expression] = STATE(596), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_jsx_element] = STATE(596), + [sym_jsx_fragment] = STATE(596), + [sym_jsx_opening_element] = STATE(766), + [sym_jsx_self_closing_element] = STATE(596), + [sym_class] = STATE(535), + [sym_function] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(596), + [sym_await_expression] = STATE(596), + [sym_member_expression] = STATE(360), + [sym_subscript_expression] = STATE(360), + [sym_assignment_expression] = STATE(596), + [sym__augmented_assignment_lhs] = STATE(720), + [sym_augmented_assignment_expression] = STATE(596), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(596), + [sym_binary_expression] = STATE(596), + [sym_unary_expression] = STATE(596), + [sym_update_expression] = STATE(596), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1264), + [aux_sym_export_statement_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(89), + [anon_sym_export] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_import] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), [anon_sym_AT] = ACTIONS(85), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), }, [198] = { - [sym_string] = STATE(1181), - [sym_formal_parameters] = STATE(1257), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(704), - [anon_sym_export] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(706), - [anon_sym_function] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_import] = STATE(424), + [sym_parenthesized_expression] = STATE(334), + [sym_expression] = STATE(380), + [sym_primary_expression] = STATE(428), + [sym_yield_expression] = STATE(430), + [sym_object] = STATE(424), + [sym_object_pattern] = STATE(1298), + [sym_array] = STATE(424), + [sym_array_pattern] = STATE(1298), + [sym_jsx_element] = STATE(430), + [sym_jsx_fragment] = STATE(430), + [sym_jsx_opening_element] = STATE(756), + [sym_jsx_self_closing_element] = STATE(430), + [sym_class] = STATE(424), + [sym_function] = STATE(424), + [sym_generator_function] = STATE(424), + [sym_arrow_function] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_new_expression] = STATE(430), + [sym_await_expression] = STATE(430), + [sym_member_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_assignment_expression] = STATE(430), + [sym__augmented_assignment_lhs] = STATE(723), + [sym_augmented_assignment_expression] = STATE(430), + [sym__destructuring_pattern] = STATE(1298), + [sym_ternary_expression] = STATE(430), + [sym_binary_expression] = STATE(430), + [sym_unary_expression] = STATE(430), + [sym_update_expression] = STATE(430), + [sym_string] = STATE(424), + [sym_template_string] = STATE(424), + [sym_regex] = STATE(424), + [sym_meta_property] = STATE(424), + [sym_decorator] = STATE(745), + [sym_formal_parameters] = STATE(1265), + [aux_sym_export_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(422), + [anon_sym_export] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_import] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_await] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(436), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(706), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(406), + [sym_number] = ACTIONS(408), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_null] = ACTIONS(410), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [199] = { - [sym_string] = STATE(1181), - [sym_formal_parameters] = STATE(1257), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(976), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(704), - [anon_sym_export] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(706), - [anon_sym_function] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym_formal_parameters] = STATE(1276), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1045), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(694), + [anon_sym_function] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(706), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(694), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(99), }, [200] = { - [sym_string] = STATE(1181), - [sym_formal_parameters] = STATE(1257), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(704), - [anon_sym_export] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(706), - [anon_sym_function] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym_formal_parameters] = STATE(1276), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(694), + [anon_sym_function] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(706), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(694), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(99), }, [201] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(976), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym_formal_parameters] = STATE(1276), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(694), + [anon_sym_function] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(694), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(99), }, [202] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1045), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(712), + [anon_sym_set] = ACTIONS(712), + [sym__automatic_semicolon] = ACTIONS(99), }, [203] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1045), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(719), + [sym__automatic_semicolon] = ACTIONS(99), }, [204] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(719), + [sym__automatic_semicolon] = ACTIONS(99), }, [205] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(976), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(712), + [anon_sym_set] = ACTIONS(712), + [sym__automatic_semicolon] = ACTIONS(99), }, [206] = { - [sym_string] = STATE(1181), - [sym__property_name] = STATE(1181), - [sym_computed_property_name] = STATE(1181), - [aux_sym_object_repeat1] = STATE(1058), - [aux_sym_object_pattern_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_in] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_async] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(660), - [anon_sym_QMARK_DOT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_STAR_STAR_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_instanceof] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(712), + [anon_sym_set] = ACTIONS(712), + [sym__automatic_semicolon] = ACTIONS(99), + }, + [207] = { + [sym_string] = STATE(1158), + [sym__property_name] = STATE(1158), + [sym_computed_property_name] = STATE(1158), + [aux_sym_object_repeat1] = STATE(1034), + [aux_sym_object_pattern_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_in] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(105), + [anon_sym_async] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_QMARK_DOT] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_SLASH_EQ] = ACTIONS(118), + [anon_sym_PERCENT_EQ] = ACTIONS(118), + [anon_sym_CARET_EQ] = ACTIONS(118), + [anon_sym_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_EQ] = ACTIONS(118), + [anon_sym_GT_GT_EQ] = ACTIONS(118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(118), + [anon_sym_LT_LT_EQ] = ACTIONS(118), + [anon_sym_STAR_STAR_EQ] = ACTIONS(118), + [anon_sym_AMP_AMP_EQ] = ACTIONS(118), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(105), + [anon_sym_PIPE_PIPE] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(105), + [anon_sym_GT_GT_GT] = ACTIONS(105), + [anon_sym_LT_LT] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_QMARK_QMARK] = ACTIONS(105), + [anon_sym_instanceof] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(404), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_number] = ACTIONS(720), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [sym__automatic_semicolon] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(708), + [anon_sym_static] = ACTIONS(712), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(719), + [sym__automatic_semicolon] = ACTIONS(99), }, }; static uint16_t ts_small_parse_table[] = { - [0] = 11, + [0] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, - sym_identifier, - ACTIONS(734), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(739), 1, - anon_sym_function, - ACTIONS(741), 1, - anon_sym_EQ_GT, - STATE(1332), 1, - sym_formal_parameters, - ACTIONS(732), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(636), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(662), 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(647), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [87] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(743), 1, + ACTIONS(458), 1, sym__automatic_semicolon, - ACTIONS(479), 18, + ACTIONS(448), 18, ts_builtin_sym_end, anon_sym_STAR, anon_sym_LBRACE, @@ -23991,7 +24136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(481), 44, + ACTIONS(450), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24036,12 +24181,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, + [73] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(721), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, + anon_sym_EQ, + ACTIONS(730), 1, + anon_sym_function, + ACTIONS(732), 1, + anon_sym_EQ_GT, + STATE(1224), 1, + sym_formal_parameters, + ACTIONS(723), 5, + anon_sym_export, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(99), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(118), 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(105), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, [160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(734), 1, sym__automatic_semicolon, - ACTIONS(417), 18, + ACTIONS(462), 18, ts_builtin_sym_end, anon_sym_STAR, anon_sym_LBRACE, @@ -24060,7 +24281,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(419), 44, + ACTIONS(464), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24108,25 +24329,25 @@ static uint16_t ts_small_parse_table[] = { [233] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(721), 1, sym_identifier, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(739), 1, + ACTIONS(730), 1, anon_sym_function, - ACTIONS(741), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - ACTIONS(745), 1, + ACTIONS(736), 1, anon_sym_EQ, - STATE(1332), 1, + STATE(1224), 1, sym_formal_parameters, - ACTIONS(732), 5, + ACTIONS(723), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 15, + ACTIONS(99), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -24142,7 +24363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24158,7 +24379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24184,25 +24405,25 @@ static uint16_t ts_small_parse_table[] = { [320] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(737), 1, + ACTIONS(736), 1, anon_sym_EQ, - ACTIONS(747), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(751), 1, + ACTIONS(742), 1, anon_sym_function, - STATE(1257), 1, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(749), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 14, + ACTIONS(99), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -24217,7 +24438,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24233,7 +24454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24256,31 +24477,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [406] = 11, + [406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(748), 1, + anon_sym_catch, + ACTIONS(750), 1, + anon_sym_finally, + STATE(222), 1, + sym_catch_clause, + STATE(242), 1, + sym_finally_clause, + ACTIONS(744), 16, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(746), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + 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_with, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [484] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(694), 1, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(734), 1, + ACTIONS(178), 1, + anon_sym_COLON, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(751), 1, + ACTIONS(752), 1, anon_sym_function, - STATE(1257), 1, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(749), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 14, + ACTIONS(99), 13, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -24292,7 +24585,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24308,7 +24601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24331,32 +24624,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [492] = 13, + [572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(462), 18, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(464), 44, + anon_sym_export, + anon_sym_default, + anon_sym_import, + 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_with, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [642] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(694), 1, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(751), 1, + ACTIONS(742), 1, anon_sym_function, - ACTIONS(753), 1, + ACTIONS(754), 1, anon_sym_in, - ACTIONS(756), 1, + ACTIONS(757), 1, anon_sym_of, - STATE(1257), 1, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(749), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 13, + ACTIONS(99), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -24370,7 +24730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24386,7 +24746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -24408,32 +24768,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [582] = 12, + [732] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(692), 1, - anon_sym_COLON, - ACTIONS(694), 1, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(742), 1, anon_sym_function, - STATE(1257), 1, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(749), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 13, + ACTIONS(99), 14, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -24445,7 +24804,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24461,7 +24820,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24484,101 +24843,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [670] = 7, + [818] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 1, - anon_sym_catch, - ACTIONS(766), 1, - anon_sym_finally, - STATE(221), 1, - sym_catch_clause, - STATE(305), 1, - sym_finally_clause, - ACTIONS(760), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(762), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [748] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(660), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(694), 1, - anon_sym_EQ, - ACTIONS(702), 1, + ACTIONS(172), 1, anon_sym_COLON, - ACTIONS(718), 1, + ACTIONS(174), 1, + anon_sym_EQ, + ACTIONS(706), 1, anon_sym_function, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(738), 1, sym_identifier, - STATE(1257), 1, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(749), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 13, + ACTIONS(99), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -24592,7 +24880,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24608,7 +24896,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24631,10 +24919,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [836] = 3, + [906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 18, + ACTIONS(561), 18, ts_builtin_sym_end, anon_sym_STAR, anon_sym_LBRACE, @@ -24653,74 +24941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(481), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(449), 18, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(451), 44, + ACTIONS(563), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24768,29 +24989,29 @@ static uint16_t ts_small_parse_table[] = { [976] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(721), 1, sym_identifier, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(739), 1, + ACTIONS(730), 1, anon_sym_function, - ACTIONS(741), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - ACTIONS(771), 1, + ACTIONS(762), 1, anon_sym_EQ, - STATE(1332), 1, + STATE(1224), 1, sym_formal_parameters, - ACTIONS(768), 3, + ACTIONS(759), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(732), 5, + ACTIONS(723), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 10, + ACTIONS(99), 10, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -24801,7 +25022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24817,7 +25038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24843,29 +25064,29 @@ static uint16_t ts_small_parse_table[] = { [1063] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(721), 1, sym_identifier, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(739), 1, + ACTIONS(730), 1, anon_sym_function, - ACTIONS(741), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - ACTIONS(768), 1, + ACTIONS(759), 1, anon_sym_RBRACK, - ACTIONS(771), 1, + ACTIONS(762), 1, anon_sym_EQ, - ACTIONS(774), 1, + ACTIONS(765), 1, anon_sym_COMMA, - STATE(1332), 1, + STATE(1224), 1, sym_formal_parameters, - ACTIONS(732), 5, + ACTIONS(723), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 10, + ACTIONS(99), 10, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -24876,7 +25097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24892,7 +25113,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24918,11 +25139,11 @@ static uint16_t ts_small_parse_table[] = { [1151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(766), 1, + ACTIONS(750), 1, anon_sym_finally, - STATE(270), 1, + STATE(245), 1, sym_finally_clause, - ACTIONS(776), 16, + ACTIONS(767), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24939,7 +25160,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(778), 42, + ACTIONS(769), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24985,25 +25206,25 @@ static uint16_t ts_small_parse_table[] = { [1223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(739), 1, + ACTIONS(730), 1, anon_sym_function, - ACTIONS(780), 1, + ACTIONS(736), 1, + anon_sym_EQ, + ACTIONS(771), 1, sym_identifier, - ACTIONS(784), 1, + ACTIONS(775), 1, anon_sym_EQ_GT, - STATE(1294), 1, + STATE(1254), 1, sym_formal_parameters, - ACTIONS(782), 5, + ACTIONS(773), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 12, + ACTIONS(99), 12, anon_sym_LBRACE, anon_sym_COLON, anon_sym_LBRACK, @@ -25016,7 +25237,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25032,7 +25253,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25055,31 +25276,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1307] = 12, + [1307] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, - sym_identifier, - ACTIONS(734), 1, - anon_sym_LPAREN, - ACTIONS(739), 1, - anon_sym_function, - ACTIONS(741), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(745), 1, + ACTIONS(174), 1, anon_sym_EQ, - STATE(1332), 1, + ACTIONS(706), 1, + anon_sym_function, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, + sym_identifier, + STATE(1276), 1, sym_formal_parameters, - ACTIONS(768), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(732), 5, + ACTIONS(740), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 10, + ACTIONS(99), 12, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25090,7 +25310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25106,7 +25326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 22, + ACTIONS(105), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25129,162 +25349,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1393] = 4, + [1391] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(463), 1, - sym__automatic_semicolon, - ACTIONS(455), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(116), 1, + anon_sym_EQ_GT, + ACTIONS(174), 1, + anon_sym_EQ, + ACTIONS(725), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(457), 42, + ACTIONS(738), 1, + sym_identifier, + ACTIONS(752), 1, + anon_sym_function, + STATE(1276), 1, + sym_formal_parameters, + ACTIONS(740), 5, anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [1462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, + ACTIONS(99), 12, sym__automatic_semicolon, - ACTIONS(495), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(497), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(118), 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(105), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + 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_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, - [1531] = 13, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1475] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, + ACTIONS(721), 1, + sym_identifier, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(737), 1, + ACTIONS(728), 1, anon_sym_EQ, - ACTIONS(739), 1, + ACTIONS(730), 1, anon_sym_function, - ACTIONS(753), 1, - anon_sym_in, - ACTIONS(756), 1, - anon_sym_of, - ACTIONS(780), 1, - sym_identifier, - ACTIONS(784), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - STATE(1294), 1, + STATE(1224), 1, sym_formal_parameters, - ACTIONS(782), 5, + ACTIONS(759), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(723), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(636), 10, + ACTIONS(99), 10, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25295,7 +25457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25311,8 +25473,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(105), 22, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -25333,15 +25496,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1618] = 3, + [1561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(786), 17, + ACTIONS(777), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -25354,7 +25516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(788), 42, + ACTIONS(779), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25376,6 +25538,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -25397,14 +25560,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1685] = 3, + [1628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(790), 16, + ACTIONS(781), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -25417,7 +25581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(792), 43, + ACTIONS(783), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25439,7 +25603,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -25461,12 +25624,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1752] = 4, + [1695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 1, - sym__automatic_semicolon, - ACTIONS(519), 16, + ACTIONS(789), 1, + anon_sym_else, + STATE(275), 1, + sym_else_clause, + ACTIONS(785), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25483,14 +25648,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(521), 42, + ACTIONS(787), 41, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -25526,16 +25690,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1821] = 4, + [1766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - sym__automatic_semicolon, - ACTIONS(485), 16, + ACTIONS(791), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -25548,7 +25711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(487), 42, + ACTIONS(793), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25591,12 +25754,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1890] = 4, + [1833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, - sym__automatic_semicolon, - ACTIONS(429), 16, + ACTIONS(795), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25613,7 +25774,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(431), 42, + ACTIONS(797), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25635,6 +25796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -25656,270 +25818,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1959] = 5, + [1900] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 1, - anon_sym_else, - STATE(250), 1, - sym_else_clause, - ACTIONS(794), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(725), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(796), 41, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, + ACTIONS(730), 1, anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, + ACTIONS(736), 1, + anon_sym_EQ, + ACTIONS(754), 1, + anon_sym_in, + ACTIONS(757), 1, + anon_sym_of, + ACTIONS(771), 1, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - sym__automatic_semicolon, - ACTIONS(469), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(471), 42, + ACTIONS(775), 1, + anon_sym_EQ_GT, + STATE(1254), 1, + sym_formal_parameters, + ACTIONS(773), 5, anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [2099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(449), 17, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(99), 10, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(451), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [2166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - sym__automatic_semicolon, - ACTIONS(417), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(118), 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(105), 21, + anon_sym_STAR, anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(419), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + 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_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, - [2235] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(802), 16, + ACTIONS(799), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25936,7 +25912,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(804), 43, + ACTIONS(801), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25958,7 +25934,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -25980,12 +25955,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2302] = 4, + [2053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__automatic_semicolon, - ACTIONS(439), 16, + ACTIONS(803), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26002,7 +25975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(441), 42, + ACTIONS(805), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26045,12 +26018,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2371] = 4, + [2119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - sym__automatic_semicolon, - ACTIONS(505), 16, + ACTIONS(807), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26067,7 +26038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(507), 42, + ACTIONS(809), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26110,11 +26081,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2440] = 3, + [2185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 17, - sym__automatic_semicolon, + ACTIONS(811), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26131,7 +26101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(481), 42, + ACTIONS(813), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26174,15 +26144,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2507] = 3, + [2251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(806), 17, + ACTIONS(815), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -26195,7 +26164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(808), 42, + ACTIONS(817), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26238,11 +26207,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2574] = 3, + [2317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(515), 17, - sym__automatic_semicolon, + ACTIONS(819), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26259,7 +26227,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(517), 42, + ACTIONS(821), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26302,11 +26270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2641] = 3, + [2383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 17, - sym__automatic_semicolon, + ACTIONS(823), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26323,7 +26290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(467), 42, + ACTIONS(825), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26366,201 +26333,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2708] = 4, + [2449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 1, - sym__automatic_semicolon, - ACTIONS(479), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(481), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [2777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(814), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [2843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(816), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(818), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [2909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 16, + ACTIONS(827), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26577,7 +26353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(829), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26620,10 +26396,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2975] = 3, + [2515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(831), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26640,7 +26416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(833), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26683,10 +26459,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3041] = 3, + [2581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 16, + ACTIONS(835), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26703,7 +26479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(826), 42, + ACTIONS(837), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26746,10 +26522,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3107] = 3, + [2647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 16, + ACTIONS(839), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26766,7 +26542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(830), 42, + ACTIONS(841), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26809,10 +26585,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3173] = 3, + [2713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 16, + ACTIONS(843), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26829,7 +26605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(834), 42, + ACTIONS(845), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26872,10 +26648,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3239] = 3, + [2779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 16, + ACTIONS(847), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26892,7 +26668,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(838), 42, + ACTIONS(849), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26935,10 +26711,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3305] = 3, + [2845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(851), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26955,7 +26731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(853), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26998,10 +26774,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3371] = 3, + [2911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27018,7 +26794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(842), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27061,10 +26837,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3437] = 3, + [2977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27081,7 +26857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27124,10 +26900,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3503] = 3, + [3043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(859), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27144,7 +26920,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(861), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27187,10 +26963,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3569] = 3, + [3109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27207,7 +26983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27250,10 +27026,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3635] = 3, + [3175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27270,7 +27046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(846), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27313,10 +27089,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3701] = 3, + [3241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27333,7 +27109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27376,10 +27152,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3767] = 3, + [3307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27396,7 +27172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(846), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27439,10 +27215,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3833] = 3, + [3373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27459,7 +27235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27502,10 +27278,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3899] = 3, + [3439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27522,7 +27298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27565,10 +27341,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3965] = 3, + [3505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27585,7 +27361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27628,10 +27404,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4031] = 3, + [3571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27648,7 +27424,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27691,10 +27467,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4097] = 3, + [3637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(863), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27711,7 +27487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(865), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27754,10 +27530,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4163] = 3, + [3703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27774,7 +27550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(850), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27817,10 +27593,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4229] = 3, + [3769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27837,7 +27613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27880,10 +27656,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4295] = 3, + [3835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27900,7 +27676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27943,10 +27719,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4361] = 3, + [3901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27963,7 +27739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28006,10 +27782,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4427] = 3, + [3967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28026,7 +27802,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(854), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28069,10 +27845,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4493] = 3, + [4033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(856), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28089,7 +27865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(858), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28132,10 +27908,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4559] = 3, + [4099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28152,7 +27928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(862), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28195,10 +27971,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4625] = 3, + [4165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(864), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28215,7 +27991,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(866), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28258,10 +28034,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4691] = 3, + [4231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 16, + ACTIONS(867), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28278,7 +28054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(870), 42, + ACTIONS(869), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28321,10 +28097,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4757] = 3, + [4297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28341,7 +28117,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28384,10 +28160,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4823] = 3, + [4363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 16, + ACTIONS(871), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28404,7 +28180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(874), 42, + ACTIONS(873), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28447,10 +28223,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4889] = 3, + [4429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(876), 16, + ACTIONS(855), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28467,7 +28243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(878), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28510,10 +28286,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4955] = 3, + [4495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(880), 16, + ACTIONS(875), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28530,7 +28306,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(882), 42, + ACTIONS(877), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28573,10 +28349,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5021] = 3, + [4561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(880), 16, + ACTIONS(879), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28593,7 +28369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(882), 42, + ACTIONS(881), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28636,10 +28412,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5087] = 3, + [4627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(884), 16, + ACTIONS(883), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28656,7 +28432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(886), 42, + ACTIONS(885), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28699,10 +28475,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5153] = 3, + [4693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 16, + ACTIONS(887), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28719,7 +28495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(890), 42, + ACTIONS(889), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28762,10 +28538,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5219] = 3, + [4759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(891), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28782,7 +28558,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(893), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28825,10 +28601,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5285] = 3, + [4825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28845,7 +28621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(894), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28888,10 +28664,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5351] = 3, + [4891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28908,7 +28684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(898), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28951,10 +28727,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5417] = 3, + [4957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 16, + ACTIONS(903), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28971,7 +28747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(902), 42, + ACTIONS(905), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29014,10 +28790,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5483] = 3, + [5023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 16, + ACTIONS(799), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29034,7 +28810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(906), 42, + ACTIONS(801), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29077,10 +28853,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5549] = 3, + [5089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(880), 16, + ACTIONS(907), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29097,7 +28873,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(882), 42, + ACTIONS(909), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29140,10 +28916,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5615] = 3, + [5155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(880), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29160,7 +28936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(882), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29203,10 +28979,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5681] = 3, + [5221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 16, + ACTIONS(911), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29223,7 +28999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(910), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29266,10 +29042,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5747] = 3, + [5287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 16, + ACTIONS(911), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29286,7 +29062,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(914), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29329,10 +29105,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5813] = 3, + [5353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 16, + ACTIONS(915), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29349,7 +29125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(918), 42, + ACTIONS(917), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29392,10 +29168,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5879] = 3, + [5419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 16, + ACTIONS(919), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29412,7 +29188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(922), 42, + ACTIONS(921), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29455,10 +29231,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5945] = 3, + [5485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(924), 16, + ACTIONS(923), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29475,7 +29251,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(926), 42, + ACTIONS(925), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29518,10 +29294,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6011] = 3, + [5551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(928), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29538,7 +29314,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(930), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29581,10 +29357,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6077] = 3, + [5617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 16, + ACTIONS(911), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29601,7 +29377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(934), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29644,10 +29420,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6143] = 3, + [5683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(936), 16, + ACTIONS(911), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29664,7 +29440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(938), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29707,10 +29483,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6209] = 3, + [5749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(927), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29727,7 +29503,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(929), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29770,10 +29546,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6275] = 3, + [5815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(807), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29790,7 +29566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(809), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29833,10 +29609,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6341] = 3, + [5881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(940), 16, + ACTIONS(931), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29853,7 +29629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(942), 42, + ACTIONS(933), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29896,10 +29672,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6407] = 3, + [5947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 16, + ACTIONS(935), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29916,7 +29692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(946), 42, + ACTIONS(937), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29959,10 +29735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6473] = 3, + [6013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(948), 16, + ACTIONS(939), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29979,7 +29755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(950), 42, + ACTIONS(941), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30022,10 +29798,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6539] = 3, + [6079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(952), 16, + ACTIONS(943), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30042,7 +29818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(954), 42, + ACTIONS(945), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30085,10 +29861,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6605] = 3, + [6145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 16, + ACTIONS(947), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30105,7 +29881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(958), 42, + ACTIONS(949), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30148,10 +29924,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6671] = 3, + [6211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 16, + ACTIONS(951), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30168,7 +29944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(962), 42, + ACTIONS(953), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30211,10 +29987,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6737] = 3, + [6277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(964), 16, + ACTIONS(955), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30231,7 +30007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(966), 42, + ACTIONS(957), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30274,10 +30050,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6803] = 3, + [6343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30294,7 +30070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(970), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30337,10 +30113,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6869] = 3, + [6409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 16, + ACTIONS(959), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30357,7 +30133,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(822), 42, + ACTIONS(961), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30400,10 +30176,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6935] = 3, + [6475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30420,7 +30196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(974), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30463,10 +30239,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7001] = 3, + [6541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 16, + ACTIONS(963), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30483,7 +30259,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(978), 42, + ACTIONS(965), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30526,10 +30302,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7067] = 3, + [6607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(980), 16, + ACTIONS(967), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30546,7 +30322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(982), 42, + ACTIONS(969), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30589,10 +30365,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7133] = 3, + [6673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(827), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30609,7 +30385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(829), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30652,10 +30428,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7199] = 3, + [6739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(971), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30672,7 +30448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(973), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30715,10 +30491,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7265] = 3, + [6805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30735,7 +30511,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30778,10 +30554,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7331] = 3, + [6871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(975), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30798,7 +30574,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(977), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30841,10 +30617,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7397] = 3, + [6937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(979), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30861,7 +30637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(981), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30904,10 +30680,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7463] = 3, + [7003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30924,7 +30700,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30967,10 +30743,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7529] = 3, + [7069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(987), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30987,7 +30763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(989), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31030,10 +30806,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7595] = 3, + [7135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31050,7 +30826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31093,10 +30869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7661] = 3, + [7201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31113,7 +30889,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31156,10 +30932,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7727] = 3, + [7267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31176,7 +30952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31219,10 +30995,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7793] = 3, + [7333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31239,7 +31015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31282,10 +31058,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7859] = 3, + [7399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(991), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31302,7 +31078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(993), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31345,10 +31121,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7925] = 3, + [7465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31365,7 +31141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31408,10 +31184,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7991] = 3, + [7531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31428,7 +31204,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31471,10 +31247,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8057] = 3, + [7597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31491,7 +31267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31534,10 +31310,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8123] = 3, + [7663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31554,7 +31330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31597,10 +31373,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8189] = 3, + [7729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31617,7 +31393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31660,10 +31436,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8255] = 3, + [7795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31680,7 +31456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31723,10 +31499,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8321] = 3, + [7861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31743,7 +31519,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31786,10 +31562,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8387] = 3, + [7927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31806,7 +31582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(986), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31849,10 +31625,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8453] = 3, + [7993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(980), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31869,7 +31645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(982), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31912,10 +31688,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8519] = 3, + [8059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(988), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31932,7 +31708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(990), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31975,24 +31751,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8585] = 11, + [8125] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(649), 1, + ACTIONS(107), 1, anon_sym_COLON, - ACTIONS(996), 1, - anon_sym_LPAREN, + ACTIONS(120), 1, + anon_sym_RBRACE, ACTIONS(999), 1, + anon_sym_LPAREN, + ACTIONS(1002), 1, anon_sym_EQ, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - STATE(976), 1, + STATE(1034), 1, aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(994), 14, + ACTIONS(997), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32007,7 +31783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32023,7 +31799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32045,24 +31821,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8666] = 11, + [8206] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, + ACTIONS(107), 1, anon_sym_COLON, - ACTIONS(678), 1, + ACTIONS(122), 1, anon_sym_RBRACE, - ACTIONS(996), 1, - anon_sym_LPAREN, ACTIONS(999), 1, + anon_sym_LPAREN, + ACTIONS(1002), 1, anon_sym_EQ, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1045), 1, aux_sym_object_repeat1, - ACTIONS(994), 14, + ACTIONS(997), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32077,7 +31853,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32093,7 +31869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32115,24 +31891,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8747] = 11, + [8287] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON, - ACTIONS(674), 1, + ACTIONS(101), 1, anon_sym_RBRACE, - ACTIONS(996), 1, - anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_COLON, ACTIONS(999), 1, + anon_sym_LPAREN, + ACTIONS(1002), 1, anon_sym_EQ, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(994), 14, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(997), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32147,7 +31923,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32163,7 +31939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32185,10 +31961,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8828] = 3, + [8368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 22, + ACTIONS(1008), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32211,7 +31987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1007), 34, + ACTIONS(1010), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32246,10 +32022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8892] = 3, + [8432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 22, + ACTIONS(1012), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32272,7 +32048,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1011), 34, + ACTIONS(1014), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32307,10 +32083,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8956] = 3, + [8496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 22, + ACTIONS(1016), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32333,7 +32109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1015), 34, + ACTIONS(1018), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32368,10 +32144,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9020] = 3, + [8560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 22, + ACTIONS(1020), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32394,7 +32170,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1019), 34, + ACTIONS(1022), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32429,14 +32205,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9084] = 6, + [8624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(1024), 1, anon_sym_EQ, - ACTIONS(1023), 1, + ACTIONS(1026), 1, anon_sym_EQ_GT, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32452,7 +32228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 17, + ACTIONS(997), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -32470,7 +32246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32492,12 +32268,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9153] = 5, + [8693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(1028), 1, anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32513,7 +32289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 18, + ACTIONS(997), 18, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32532,7 +32308,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32554,14 +32330,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9220] = 6, + [8760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - ACTIONS(1025), 1, + ACTIONS(736), 1, anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32577,7 +32353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 17, + ACTIONS(99), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -32595,7 +32371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32617,14 +32393,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9289] = 6, + [8829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(741), 1, + ACTIONS(1026), 1, anon_sym_EQ_GT, - ACTIONS(662), 15, + ACTIONS(1028), 1, + anon_sym_EQ, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32640,7 +32416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(636), 17, + ACTIONS(997), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -32658,7 +32434,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32680,14 +32456,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9358] = 6, + [8898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 1, - anon_sym_EQ_GT, - ACTIONS(745), 1, + ACTIONS(728), 1, anon_sym_EQ, - ACTIONS(662), 15, + ACTIONS(732), 1, + anon_sym_EQ_GT, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32703,7 +32479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(636), 17, + ACTIONS(99), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -32721,35 +32497,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(647), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1005), 22, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32769,47 +32519,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1007), 32, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [9489] = 6, + [8967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(694), 1, + ACTIONS(736), 1, anon_sym_EQ, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32825,7 +32542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(636), 16, + ACTIONS(99), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -32842,7 +32559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(647), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32864,14 +32581,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9557] = 6, + [9035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(1025), 1, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32887,7 +32604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 16, + ACTIONS(99), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -32904,7 +32621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32926,16 +32643,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9625] = 7, + [9103] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(702), 1, - anon_sym_COLON, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - ACTIONS(1027), 1, + ACTIONS(1030), 1, + anon_sym_in, + ACTIONS(1033), 1, + anon_sym_of, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(994), 15, + ACTIONS(997), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -32951,7 +32670,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32967,9 +32686,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32989,42 +32707,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9695] = 3, + [9175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 22, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1004), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1019), 32, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33040,26 +32730,10 @@ static 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, - [9757] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(660), 1, - anon_sym_EQ_GT, - ACTIONS(694), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_COLON, - ACTIONS(636), 15, + ACTIONS(997), 16, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -33073,23 +32747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 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(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33111,16 +32769,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9827] = 7, + [9243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, - anon_sym_EQ_GT, - ACTIONS(692), 1, + ACTIONS(178), 1, anon_sym_COLON, - ACTIONS(694), 1, + ACTIONS(1004), 1, + anon_sym_EQ_GT, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(636), 15, + ACTIONS(997), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -33136,7 +32794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33152,7 +32810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33174,10 +32832,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9897] = 3, + [9313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 22, + ACTIONS(1012), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33200,7 +32858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1015), 32, + ACTIONS(1014), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33233,16 +32891,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9959] = 7, + [9375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 1, + ACTIONS(172), 1, anon_sym_COLON, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - ACTIONS(1027), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(994), 15, + ACTIONS(997), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -33258,7 +32916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33274,7 +32932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33296,49 +32954,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10029] = 6, + [9445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, - anon_sym_EQ_GT, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(662), 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(636), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(647), 21, + ACTIONS(1008), 22, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -33358,34 +32980,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10097] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - anon_sym_EQ_GT, - ACTIONS(1027), 1, - anon_sym_EQ, - ACTIONS(1029), 1, - anon_sym_in, - ACTIONS(1032), 1, - anon_sym_of, - ACTIONS(994), 15, + ACTIONS(1010), 32, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - 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(1003), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33401,8 +33005,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 20, + 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, + [9507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1016), 22, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -33422,12 +33039,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 1, - anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(1018), 32, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33443,16 +33064,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -33461,40 +33072,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10235] = 8, + [9569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(694), 1, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(753), 1, - anon_sym_in, - ACTIONS(1034), 1, - anon_sym_of, - ACTIONS(636), 15, + ACTIONS(178), 1, + anon_sym_COLON, + ACTIONS(99), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -33510,7 +33097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33526,8 +33113,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 20, + ACTIONS(105), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -33547,33 +33135,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10307] = 6, + [9639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 1, + ACTIONS(116), 1, anon_sym_EQ_GT, - ACTIONS(1027), 1, + ACTIONS(172), 1, + anon_sym_COLON, + ACTIONS(174), 1, anon_sym_EQ, - ACTIONS(1003), 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(994), 16, + ACTIONS(99), 15, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -33587,7 +33160,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(118), 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(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33609,10 +33198,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10375] = 3, + [9709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 22, + ACTIONS(1020), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33635,7 +33224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1011), 32, + ACTIONS(1022), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33668,19 +33257,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10437] = 7, + [9771] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 1, - anon_sym_EQ_GT, - ACTIONS(771), 1, + ACTIONS(1024), 1, anon_sym_EQ, - ACTIONS(768), 3, + ACTIONS(1006), 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(997), 17, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(636), 12, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(995), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9837] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, + anon_sym_EQ_GT, + ACTIONS(174), 1, + anon_sym_EQ, + ACTIONS(754), 1, + anon_sym_in, + ACTIONS(1037), 1, + anon_sym_of, + ACTIONS(99), 15, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -33692,7 +33345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33708,9 +33361,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(105), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -33730,31 +33382,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10506] = 7, + [9909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(1004), 1, anon_sym_EQ_GT, - ACTIONS(1039), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(1036), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(994), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33770,7 +33405,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(997), 16, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33792,10 +33444,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10575] = 3, + [9977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 14, + ACTIONS(1041), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -33810,7 +33462,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1017), 39, + ACTIONS(1039), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -33850,12 +33502,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10636] = 5, + [10038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, + ACTIONS(1028), 1, anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33871,7 +33523,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 16, + ACTIONS(997), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33888,7 +33540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33910,72 +33562,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10701] = 7, + [10103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, - anon_sym_EQ, - ACTIONS(1029), 1, - anon_sym_in, - ACTIONS(1032), 1, - anon_sym_of, - ACTIONS(994), 15, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1003), 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(992), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 14, + ACTIONS(1022), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -33990,7 +33580,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1042), 39, + ACTIONS(1020), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -34030,68 +33620,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10831] = 3, + [10164] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 14, - anon_sym_LBRACE, + ACTIONS(1030), 1, + anon_sym_in, + ACTIONS(1033), 1, + anon_sym_of, + ACTIONS(1035), 1, + anon_sym_EQ, + ACTIONS(997), 15, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(1046), 39, - anon_sym_export, - anon_sym_import, - 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_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, + ACTIONS(1006), 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(995), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + 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_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, - [10892] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 14, + ACTIONS(1045), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -34106,7 +33700,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1050), 39, + ACTIONS(1043), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -34146,12 +33740,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10953] = 5, + [10294] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(732), 1, + anon_sym_EQ_GT, + ACTIONS(762), 1, anon_sym_EQ, - ACTIONS(1003), 15, + ACTIONS(759), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(99), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34167,24 +33780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(994), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34206,17 +33802,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11018] = 6, + [10363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(784), 1, + ACTIONS(1026), 1, anon_sym_EQ_GT, - ACTIONS(636), 14, - anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_EQ, + ACTIONS(1047), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(997), 12, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -34228,7 +33826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34244,7 +33842,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34266,29 +33864,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11084] = 6, + [10432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(1054), 1, - anon_sym_EQ_GT, - ACTIONS(994), 14, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34304,7 +33885,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(997), 16, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34326,18 +33924,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11150] = 8, + [10497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 1, - anon_sym_EQ_GT, - ACTIONS(768), 1, - anon_sym_RBRACK, - ACTIONS(771), 1, + ACTIONS(1055), 14, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1053), 39, + anon_sym_export, + anon_sym_import, + 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_with, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [10558] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, anon_sym_EQ, - ACTIONS(774), 1, + ACTIONS(1026), 1, + anon_sym_EQ_GT, + ACTIONS(1057), 2, anon_sym_COMMA, - ACTIONS(636), 12, + anon_sym_RBRACE, + ACTIONS(997), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34350,7 +34005,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34366,7 +34021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34388,18 +34043,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11220] = 7, + [10626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(736), 1, anon_sym_EQ, - ACTIONS(1023), 1, + ACTIONS(775), 1, anon_sym_EQ_GT, - ACTIONS(1056), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(994), 12, + ACTIONS(99), 14, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -34411,7 +34065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34427,7 +34081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34449,18 +34103,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11288] = 7, + [10692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(1028), 1, anon_sym_EQ, - ACTIONS(1023), 1, + ACTIONS(1060), 1, anon_sym_EQ_GT, - ACTIONS(1036), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(994), 12, + ACTIONS(997), 14, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -34472,7 +34125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34488,7 +34141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34510,17 +34163,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11356] = 7, + [10758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 1, - anon_sym_EQ_GT, - ACTIONS(745), 1, + ACTIONS(1024), 1, anon_sym_EQ, - ACTIONS(768), 2, + ACTIONS(1026), 1, + anon_sym_EQ_GT, + ACTIONS(1047), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(636), 12, + ACTIONS(997), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34533,7 +34186,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34549,7 +34202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 21, + ACTIONS(995), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34571,18 +34224,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11424] = 8, + [10826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - anon_sym_EQ_GT, - ACTIONS(1036), 1, - anon_sym_RBRACK, - ACTIONS(1039), 1, + ACTIONS(728), 1, anon_sym_EQ, - ACTIONS(1059), 1, + ACTIONS(732), 1, + anon_sym_EQ_GT, + ACTIONS(759), 2, anon_sym_COMMA, - ACTIONS(994), 12, + anon_sym_RBRACE, + ACTIONS(99), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34595,7 +34247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34611,7 +34263,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34633,17 +34285,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11494] = 7, + [10894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(732), 1, anon_sym_EQ_GT, - ACTIONS(1061), 1, + ACTIONS(759), 1, + anon_sym_RBRACK, + ACTIONS(762), 1, anon_sym_EQ, - ACTIONS(1056), 2, + ACTIONS(765), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(994), 12, + ACTIONS(99), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34656,7 +34309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34672,7 +34325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 21, + ACTIONS(105), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34694,18 +34347,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11562] = 8, + [10964] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, - anon_sym_EQ, - ACTIONS(1029), 1, - anon_sym_in, - ACTIONS(1032), 1, - anon_sym_of, - ACTIONS(1054), 1, + ACTIONS(1026), 1, anon_sym_EQ_GT, - ACTIONS(994), 12, + ACTIONS(1062), 1, + anon_sym_EQ, + ACTIONS(1057), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(997), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34718,7 +34370,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34734,8 +34386,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 20, + ACTIONS(995), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34755,18 +34408,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11631] = 8, + [11032] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(753), 1, - anon_sym_in, - ACTIONS(784), 1, + ACTIONS(1026), 1, anon_sym_EQ_GT, - ACTIONS(1034), 1, - anon_sym_of, - ACTIONS(636), 12, + ACTIONS(1047), 1, + anon_sym_RBRACK, + ACTIONS(1050), 1, + anon_sym_EQ, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(997), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34779,7 +34432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(662), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34795,8 +34448,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(647), 20, + ACTIONS(995), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34816,126 +34470,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11700] = 3, + [11102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 22, - anon_sym_export, - anon_sym_STAR, + ACTIONS(736), 1, + anon_sym_EQ, + ACTIONS(754), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1065), 28, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(775), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + anon_sym_of, + ACTIONS(99), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - [11758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 22, - anon_sym_export, + ACTIONS(118), 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(105), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1069), 28, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, 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_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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - [11816] = 7, + [11171] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(1028), 1, anon_sym_EQ, - ACTIONS(1029), 1, + ACTIONS(1030), 1, anon_sym_in, - ACTIONS(1032), 1, + ACTIONS(1033), 1, anon_sym_of, - ACTIONS(994), 12, + ACTIONS(1060), 1, + anon_sym_EQ_GT, + ACTIONS(997), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34948,7 +34555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1003), 15, + ACTIONS(1006), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34964,7 +34571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(992), 20, + ACTIONS(995), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -34985,10 +34592,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11882] = 3, + [11240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 22, + ACTIONS(1066), 22, anon_sym_export, anon_sym_STAR, anon_sym_in, @@ -35011,7 +34618,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1073), 28, + ACTIONS(1068), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35040,31 +34647,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - [11940] = 11, + [11298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(1075), 1, - sym_identifier, - ACTIONS(1077), 1, + ACTIONS(1070), 22, + anon_sym_export, anon_sym_STAR, - ACTIONS(1079), 1, - anon_sym_LBRACE, - STATE(1185), 1, - sym_import_clause, - STATE(1188), 1, - sym_string, - STATE(1298), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1083), 13, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, @@ -35074,13 +34669,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - ACTIONS(1081), 22, - sym__automatic_semicolon, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1072), 28, + 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_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35096,32 +34697,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [12008] = 10, + sym_number, + anon_sym_AT, + [11356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1085), 13, + ACTIONS(1074), 22, + anon_sym_export, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, @@ -35130,13 +34723,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 19, + anon_sym_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1076), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35149,37 +34750,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [12071] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + [11414] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, + ACTIONS(1028), 1, anon_sym_EQ, - ACTIONS(1099), 1, - sym__automatic_semicolon, - ACTIONS(419), 13, - anon_sym_STAR, + ACTIONS(1030), 1, anon_sym_in, + ACTIONS(1033), 1, + anon_sym_of, + ACTIONS(997), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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(1006), 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(995), 20, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + 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_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(417), 26, + anon_sym_QMARK_QMARK, + [11480] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, + ACTIONS(1078), 1, + sym_identifier, + ACTIONS(1080), 1, + anon_sym_STAR, + ACTIONS(1082), 1, anon_sym_LBRACE, + STATE(1092), 1, + sym_string, + STATE(1094), 1, + sym_import_clause, + STATE(1293), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(1086), 13, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1084), 22, + sym__automatic_semicolon, 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -35194,30 +34870,29 @@ static 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, - [12124] = 10, + [11548] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1101), 13, + ACTIONS(1088), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35231,7 +34906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1103), 19, + ACTIONS(1090), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35251,26 +34926,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12187] = 10, + [11611] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1101), 13, + ACTIONS(1088), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35284,7 +34959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1103), 19, + ACTIONS(1090), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35304,23 +34979,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12250] = 9, + [11674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1105), 13, + ACTIONS(1102), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35334,7 +35009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 21, + ACTIONS(1104), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35356,268 +35031,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12311] = 22, + [11735] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1106), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1115), 4, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1111), 5, + ACTIONS(1108), 19, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [12397] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, + 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, - ACTIONS(1137), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [12483] = 22, + [11798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1110), 1, + sym__automatic_semicolon, + ACTIONS(450), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1117), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1127), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1139), 5, + ACTIONS(448), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [12569] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1095), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, + 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, - ACTIONS(1141), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [12655] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [11851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1110), 1, sym__automatic_semicolon, - ACTIONS(481), 13, + ACTIONS(450), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35631,7 +35151,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(479), 26, + ACTIONS(448), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35658,75 +35178,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12705] = 21, + [11901] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1085), 1, - anon_sym_QMARK, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1106), 8, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1108), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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, - ACTIONS(1087), 6, + [11971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1120), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [12789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1149), 1, - sym_regex_flags, - ACTIONS(1145), 14, + ACTIONS(452), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35740,16 +35258,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1147), 25, + ACTIONS(454), 22, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -35764,134 +35277,144 @@ static 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, - [12839] = 16, + [12023] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1131), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1087), 9, + ACTIONS(1123), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [12913] = 14, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [12109] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1131), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 8, - anon_sym_in, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1139), 5, 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, - [12983] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 1, - anon_sym_EQ, - ACTIONS(1155), 4, + ACTIONS(1143), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1151), 13, + [12195] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 1, + sym_regex_flags, + ACTIONS(1145), 14, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35905,11 +35428,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 22, + anon_sym_instanceof, + ACTIONS(1147), 25, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -35924,152 +35452,223 @@ static 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, - [13035] = 22, + [12245] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1160), 5, + ACTIONS(1151), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13121] = 22, + [12331] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1153), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [12417] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1162), 5, + ACTIONS(1155), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13207] = 8, + [12503] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1168), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - STATE(430), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(476), 2, + sym_template_string, sym_arguments, - ACTIONS(1164), 13, + ACTIONS(1106), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36083,8 +35682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1166), 22, - anon_sym_LBRACE, + ACTIONS(1108), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -36096,138 +35694,88 @@ static uint16_t ts_small_parse_table[] = { 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, - [13265] = 22, + [12567] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1170), 5, - anon_sym_COMMA, + ACTIONS(1159), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_EQ, - ACTIONS(1172), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(421), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(423), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1139), 5, 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, - [13403] = 5, + [12655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1168), 1, anon_sym_EQ, - ACTIONS(1179), 4, + ACTIONS(1165), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1175), 13, + ACTIONS(1161), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36241,7 +35789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 22, + ACTIONS(1163), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON, @@ -36264,170 +35812,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13455] = 22, + [12707] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1106), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1184), 5, + ACTIONS(1108), 9, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13541] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [12781] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1186), 5, + ACTIONS(1170), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13627] = 11, + [12867] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1131), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1085), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1106), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 17, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1108), 9, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -36435,279 +35991,275 @@ static uint16_t ts_small_parse_table[] = { 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [13691] = 22, + [12943] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1188), 5, + ACTIONS(1172), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13777] = 23, + [13029] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, + anon_sym_in, ACTIONS(1131), 1, - anon_sym_STAR_STAR, + anon_sym_AMP_AMP, ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1097), 2, + anon_sym_AMP, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1106), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1192), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [13865] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, + ACTIONS(1108), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [13109] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1194), 5, + ACTIONS(1174), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13951] = 22, + [13195] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1196), 5, + ACTIONS(1176), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14037] = 4, + [13281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, - sym__automatic_semicolon, - ACTIONS(419), 13, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1182), 1, + anon_sym_QMARK_DOT, + STATE(498), 1, + sym_arguments, + ACTIONS(1178), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36721,17 +36273,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(417), 26, + ACTIONS(1180), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36748,249 +36296,327 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14087] = 17, + [13339] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 2, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1085), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 9, + ACTIONS(1184), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [14163] = 19, + [13425] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1119), 1, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1085), 2, - anon_sym_QMARK, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1097), 2, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 8, + ACTIONS(1186), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [13511] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1106), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1108), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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, - [14243] = 22, + anon_sym_instanceof, + [13579] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1198), 5, + ACTIONS(1188), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14329] = 13, + [13665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1131), 1, + ACTIONS(1106), 1, + anon_sym_QMARK, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 10, - anon_sym_in, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 14, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1108), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - 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, - [14397] = 3, + [13749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(1197), 1, + anon_sym_EQ, + ACTIONS(1194), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1190), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37004,15 +36630,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1202), 26, + ACTIONS(1192), 22, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -37031,10 +36653,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14444] = 3, + [13801] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1199), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [13887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 13, + ACTIONS(1201), 1, + sym__automatic_semicolon, + ACTIONS(464), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37048,7 +36736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1206), 26, + ACTIONS(462), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37075,10 +36763,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14491] = 3, + [13937] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1203), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [14022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 13, + ACTIONS(1205), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37092,7 +36843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1210), 26, + ACTIONS(1207), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37119,10 +36870,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14538] = 3, + [14069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 13, + ACTIONS(1209), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37136,7 +36887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1214), 26, + ACTIONS(1211), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37163,10 +36914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14585] = 3, + [14116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 13, + ACTIONS(472), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37180,7 +36931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1218), 26, + ACTIONS(474), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37207,10 +36958,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14632] = 3, + [14163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(482), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37224,7 +36975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 26, + ACTIONS(484), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37251,10 +37002,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14679] = 3, + [14210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 14, + ACTIONS(506), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(508), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, + [14257] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1170), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [14342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 14, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -37269,7 +37127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1226), 25, + ACTIONS(1251), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -37295,17 +37153,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14726] = 6, + [14389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, - anon_sym_EQ, - ACTIONS(427), 1, - sym__automatic_semicolon, - ACTIONS(417), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(421), 13, + ACTIONS(518), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37319,11 +37170,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 22, + ACTIONS(520), 26, + 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -37342,10 +37197,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14779] = 3, + [14436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(545), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37359,7 +37214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1230), 26, + ACTIONS(547), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37386,16 +37241,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14826] = 6, + [14483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(496), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(498), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1093), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1168), 1, anon_sym_QMARK_DOT, - ACTIONS(1228), 13, + 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, + [14530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(528), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37409,14 +37302,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1230), 23, + ACTIONS(530), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37433,10 +37329,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14879] = 3, + [14577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(992), 13, + ACTIONS(1253), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37450,7 +37346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(994), 26, + ACTIONS(1255), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37477,73 +37373,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14926] = 22, + [14624] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1196), 4, + ACTIONS(1153), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15011] = 3, + [14709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 13, + ACTIONS(995), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37557,7 +37453,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(525), 26, + ACTIONS(997), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37584,73 +37480,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15058] = 22, + [14756] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1137), 4, + ACTIONS(1155), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15143] = 3, + [14841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1257), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37664,7 +37560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1270), 26, + ACTIONS(1186), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37691,10 +37587,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15190] = 3, + [14888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1106), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37708,55 +37622,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1226), 26, - anon_sym_LBRACE, + ACTIONS(1108), 16, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - anon_sym_BQUOTE, - [15237] = 11, + [14951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1182), 1, anon_sym_QMARK_DOT, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1085), 13, + ACTIONS(1259), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37770,90 +37662,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 16, - sym__automatic_semicolon, + ACTIONS(1261), 23, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + 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, - [15300] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15004] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1160), 4, + ACTIONS(1176), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15385] = 3, + [15089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1259), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37867,7 +37766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1274), 26, + ACTIONS(1261), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37894,10 +37793,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15432] = 3, + [15136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1265), 25, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, + [15183] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1106), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1108), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [15256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 13, + ACTIONS(1086), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37911,7 +37911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(461), 26, + ACTIONS(1084), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37938,98 +37938,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15479] = 3, + [15303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1214), 25, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [15526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(489), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(491), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [15573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 13, + ACTIONS(1267), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38043,7 +37955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(435), 26, + ACTIONS(1199), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38070,113 +37982,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15620] = 16, + [15350] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 4, + ACTIONS(1106), 8, anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1240), 4, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1087), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [15693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1137), 26, - anon_sym_LBRACE, + ACTIONS(1108), 13, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - anon_sym_BQUOTE, - [15740] = 4, + [15419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, - anon_sym_EQ, - ACTIONS(1175), 13, + ACTIONS(1269), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38190,7 +38054,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 25, + ACTIONS(1271), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -38216,111 +38081,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15789] = 14, + [15466] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1102), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1085), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1087), 13, + ACTIONS(1104), 19, sym__automatic_semicolon, 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_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, - [15858] = 17, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15525] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1085), 3, + ACTIONS(1106), 3, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 8, + ACTIONS(1108), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38329,59 +38189,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [15933] = 19, + [15600] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1085), 2, + ACTIONS(1106), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 7, + ACTIONS(1108), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38389,36 +38249,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [16012] = 13, + [15679] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 10, + ACTIONS(1106), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -38429,7 +38289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 13, + ACTIONS(1108), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38443,26 +38303,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16079] = 10, + [15746] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1085), 13, + ACTIONS(1106), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38476,7 +38336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 17, + ACTIONS(1108), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38494,261 +38354,179 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16140] = 21, + [15807] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1085), 1, + ACTIONS(1106), 1, anon_sym_QMARK, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 5, + ACTIONS(1108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_QMARK_QMARK, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16223] = 22, + [15890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1111), 4, + ACTIONS(1172), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16308] = 22, + [15975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(563), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1139), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [16393] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(561), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1242), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1244), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, - anon_sym_AMP, - ACTIONS(1256), 1, - anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1170), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [16478] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 13, + ACTIONS(1273), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38762,7 +38540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1280), 26, + ACTIONS(1184), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38789,10 +38567,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16525] = 3, + [16069] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1088), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38806,17 +38600,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1284), 26, - anon_sym_LBRACE, + ACTIONS(1090), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38830,13 +38618,26 @@ static 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, - [16572] = 3, + [16130] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1088), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38850,17 +38651,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 26, - anon_sym_LBRACE, + ACTIONS(1090), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38874,13 +38669,10 @@ static 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, - [16619] = 3, + [16191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 13, + ACTIONS(536), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38894,7 +38686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1139), 26, + ACTIONS(534), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38921,10 +38713,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16666] = 3, + [16238] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1188), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [16323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(458), 1, + sym__automatic_semicolon, + ACTIONS(448), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(452), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(454), 22, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, + [16376] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1174), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [16461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1275), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38938,7 +38903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1294), 26, + ACTIONS(1277), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38965,10 +38930,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16713] = 3, + [16508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 13, + ACTIONS(1279), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38982,7 +38947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1081), 26, + ACTIONS(1281), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39009,73 +38974,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16760] = 22, + [16555] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1194), 4, + ACTIONS(1143), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16845] = 3, + [16640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1283), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39089,7 +39054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1298), 26, + ACTIONS(1285), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39116,10 +39081,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16892] = 3, + [16687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(452), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39133,8 +39100,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1302), 26, - anon_sym_LBRACE, + ACTIONS(454), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39160,10 +39126,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16939] = 3, + [16736] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1186), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [16821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1287), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39177,7 +39206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1306), 26, + ACTIONS(1289), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39204,10 +39233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16986] = 3, + [16868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 13, + ACTIONS(1291), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39221,7 +39250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(501), 26, + ACTIONS(1293), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39248,10 +39277,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17033] = 3, + [16915] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1199), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 13, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39265,7 +39357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 26, + ACTIONS(1297), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39292,10 +39384,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17080] = 3, + [17047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1299), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39309,7 +39401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 26, + ACTIONS(1174), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39336,10 +39428,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17127] = 3, + [17094] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1184), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39353,7 +39508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 26, + ACTIONS(1303), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39380,10 +39535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17174] = 3, + [17226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 13, + ACTIONS(1305), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39397,7 +39552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(445), 26, + ACTIONS(1307), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39424,10 +39579,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17221] = 3, + [17273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1168), 1, + anon_sym_EQ, + ACTIONS(1161), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39441,8 +39598,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, - anon_sym_LBRACE, + ACTIONS(1163), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39468,10 +39624,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17268] = 3, + [17322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1309), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39485,7 +39641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + ACTIONS(1311), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39512,10 +39668,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17315] = 3, + [17369] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1313), 1, + anon_sym_COMMA, + ACTIONS(1316), 1, + anon_sym_RBRACE, + ACTIONS(1176), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + anon_sym_EQ, + ACTIONS(1190), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39529,8 +39752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 26, - anon_sym_LBRACE, + ACTIONS(1192), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39556,75 +39778,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17362] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, - anon_sym_AMP, - ACTIONS(1256), 1, - anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1186), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [17447] = 4, + [17507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, - anon_sym_EQ, - ACTIONS(421), 13, + ACTIONS(1263), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39638,7 +39795,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 25, + ACTIONS(1265), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39664,10 +39822,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17496] = 3, + [17554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1318), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39681,7 +39839,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1160), 26, + ACTIONS(1320), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39708,10 +39866,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17543] = 3, + [17601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(464), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39725,7 +39883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1170), 26, + ACTIONS(462), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39752,184 +39910,138 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17590] = 24, + [17648] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1328), 1, - anon_sym_COMMA, - ACTIONS(1331), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, - ACTIONS(1141), 2, + ACTIONS(1322), 1, + anon_sym_COMMA, + ACTIONS(1153), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(449), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [17726] = 22, + [17737] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1184), 4, + ACTIONS(1151), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17811] = 4, + [17822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 1, - anon_sym_EQ, - ACTIONS(1151), 13, + ACTIONS(1325), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39943,7 +40055,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 25, + ACTIONS(1327), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39969,10 +40082,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17860] = 3, + [17869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1333), 13, + ACTIONS(1329), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39986,7 +40099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1162), 26, + ACTIONS(1331), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40013,10 +40126,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17907] = 3, + [17916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 13, + ACTIONS(1333), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40030,7 +40143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1337), 26, + ACTIONS(1335), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40057,10 +40170,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17954] = 3, + [17963] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1337), 1, + anon_sym_COMMA, + ACTIONS(1340), 1, + anon_sym_RBRACE, + ACTIONS(1153), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [18052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40074,7 +40252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 26, + ACTIONS(1344), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40101,73 +40279,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18001] = 22, + [18099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1346), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1348), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1242), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1244), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, - anon_sym_AMP, - ACTIONS(1256), 1, - anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, + 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, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, + anon_sym_BQUOTE, + [18146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1252), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1352), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1141), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [18086] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 13, + ACTIONS(555), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40181,7 +40384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1343), 26, + ACTIONS(557), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40208,138 +40411,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18133] = 24, + [18240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1342), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1331), 1, - anon_sym_RBRACE, - ACTIONS(1345), 1, - anon_sym_COMMA, - ACTIONS(1196), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18222] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1344), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1242), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1244), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, - anon_sym_AMP, - ACTIONS(1256), 1, - anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1198), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [18307] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1354), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40353,7 +40472,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 26, + ACTIONS(1356), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40380,10 +40499,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18354] = 3, + [18334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 13, + ACTIONS(1358), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40397,7 +40516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(475), 26, + ACTIONS(1172), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40424,10 +40543,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18401] = 3, + [18381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 13, + ACTIONS(1360), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40441,7 +40560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(479), 26, + ACTIONS(1362), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40468,91 +40587,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18448] = 24, + [18428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1364), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1352), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1366), 26, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1355), 1, anon_sym_RBRACE, - ACTIONS(1196), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1250), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [18537] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1266), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1101), 13, + anon_sym_BQUOTE, + [18475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40566,11 +40648,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1103), 17, - sym__automatic_semicolon, + ACTIONS(1344), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40584,10 +40672,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18598] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, + ACTIONS(1368), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40601,7 +40692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 26, + ACTIONS(1155), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40628,10 +40719,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18645] = 3, + [18569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40645,7 +40736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 26, + ACTIONS(1344), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40672,10 +40763,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18692] = 3, + [18616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(490), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40689,7 +40780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 26, + ACTIONS(488), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40716,10 +40807,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18739] = 3, + [18663] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1123), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [18748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40733,7 +40887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 26, + ACTIONS(1372), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40760,10 +40914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18786] = 3, + [18795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1249), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40777,7 +40931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 26, + ACTIONS(1251), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40804,10 +40958,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18833] = 3, + [18842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1374), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40821,7 +40975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 26, + ACTIONS(1376), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40848,10 +41002,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18880] = 3, + [18889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40865,7 +41019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 26, + ACTIONS(1380), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40892,26 +41046,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18927] = 10, + [18936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1101), 13, + ACTIONS(1382), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40925,11 +41063,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1103), 17, - sym__automatic_semicolon, + ACTIONS(1384), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40943,10 +41087,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18988] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(467), 13, + ACTIONS(1386), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40960,7 +41107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(465), 26, + ACTIONS(1388), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40987,86 +41134,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19035] = 22, + [19030] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1392), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1133), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19120] = 9, + [19116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1105), 13, + ACTIONS(500), 1, + sym__automatic_semicolon, + ACTIONS(492), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(496), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41080,11 +41219,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 19, - sym__automatic_semicolon, + ACTIONS(498), 22, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41100,10 +41241,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [19179] = 3, + anon_sym_BQUOTE, + [19166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 13, + ACTIONS(1168), 1, + anon_sym_EQ, + ACTIONS(1161), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41117,15 +41261,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1377), 26, - anon_sym_LBRACE, + ACTIONS(1163), 24, + sym__automatic_semicolon, 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -41144,73 +41286,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19226] = 22, + [19214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(532), 1, + sym__automatic_semicolon, + ACTIONS(524), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(528), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(530), 22, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1162), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [19311] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 13, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1394), 1, + anon_sym_QMARK_DOT, + STATE(529), 1, + sym_arguments, + ACTIONS(1178), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41224,17 +41358,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1381), 26, - anon_sym_LBRACE, + ACTIONS(1180), 20, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41251,119 +41379,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19358] = 22, + [19320] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1188), 4, - sym__automatic_semicolon, + ACTIONS(1396), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1240), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19443] = 3, + [19404] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1385), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1223), 1, anon_sym_DOT, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, anon_sym_AMP_AMP, + ACTIONS(1235), 1, + anon_sym_AMP, + ACTIONS(1237), 1, + anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1398), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, 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, - [19490] = 4, + [19490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, - sym_regex_flags, - ACTIONS(1145), 14, + ACTIONS(549), 1, + sym__automatic_semicolon, + ACTIONS(541), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(545), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41377,11 +41526,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1147), 23, - sym__automatic_semicolon, + ACTIONS(547), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -41399,145 +41545,127 @@ static 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, - [19538] = 24, + [19540] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - anon_sym_RBRACK, - STATE(1028), 1, - aux_sym_array_repeat1, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1400), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19626] = 23, + [19626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(565), 1, + sym__automatic_semicolon, + ACTIONS(450), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1391), 1, - anon_sym_COMMA, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1393), 2, - sym__automatic_semicolon, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(448), 23, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [19712] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 1, + ACTIONS(522), 1, sym__automatic_semicolon, - ACTIONS(519), 2, + ACTIONS(514), 2, anon_sym_else, anon_sym_while, - ACTIONS(523), 13, + ACTIONS(518), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41551,7 +41679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(525), 22, + ACTIONS(520), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -41574,15 +41702,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19762] = 5, + [19726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(559), 1, sym__automatic_semicolon, - ACTIONS(469), 2, + ACTIONS(551), 2, anon_sym_else, anon_sym_while, - ACTIONS(473), 13, + ACTIONS(555), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41596,7 +41724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(475), 22, + ACTIONS(557), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -41619,76 +41747,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19812] = 22, + [19776] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1402), 1, + anon_sym_RBRACK, + STATE(1042), 1, + aux_sym_array_repeat1, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1395), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19896] = 4, + [19864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, + ACTIONS(1197), 1, anon_sym_EQ, - ACTIONS(421), 13, - anon_sym_STAR, + ACTIONS(1404), 1, anon_sym_in, + ACTIONS(1407), 1, + anon_sym_of, + ACTIONS(1190), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -41700,10 +41833,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 24, + ACTIONS(1192), 23, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -41725,15 +41857,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19944] = 5, + [19916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - sym__automatic_semicolon, - ACTIONS(485), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(489), 13, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(452), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41747,8 +41876,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(491), 22, + ACTIONS(454), 24, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -41770,15 +41901,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19994] = 5, + [19964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, - sym__automatic_semicolon, - ACTIONS(429), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(433), 13, + ACTIONS(1197), 1, + anon_sym_EQ, + ACTIONS(1190), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41792,8 +41920,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(435), 22, + ACTIONS(1192), 24, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -41815,121 +41945,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20044] = 5, + [20012] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - sym__automatic_semicolon, - ACTIONS(495), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(499), 13, - anon_sym_STAR, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1129), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, anon_sym_AMP, + ACTIONS(1137), 1, anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 22, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1409), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, 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, - [20094] = 24, + [20096] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1397), 1, - anon_sym_RBRACK, - STATE(1028), 1, - aux_sym_array_repeat1, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20182] = 4, + [20180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, - anon_sym_EQ, - ACTIONS(1175), 13, + ACTIONS(510), 1, + sym__automatic_semicolon, + ACTIONS(502), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(506), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41943,10 +42091,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 24, - sym__automatic_semicolon, + ACTIONS(508), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -41968,17 +42114,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20230] = 5, + [20230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - sym__automatic_semicolon, - ACTIONS(505), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(509), 13, - anon_sym_STAR, + ACTIONS(1168), 1, + anon_sym_EQ, + ACTIONS(1413), 1, anon_sym_in, + ACTIONS(1416), 1, + anon_sym_of, + ACTIONS(1161), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -41990,7 +42136,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 22, + ACTIONS(1163), 23, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42013,20 +42160,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20280] = 8, + [20282] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 1, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1399), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - STATE(551), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1418), 1, + anon_sym_RBRACK, + STATE(978), 1, + aux_sym_array_repeat1, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [20370] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1420), 1, + anon_sym_RBRACK, + STATE(978), 1, + aux_sym_array_repeat1, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, sym_arguments, - ACTIONS(1164), 13, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [20458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1422), 1, + sym_regex_flags, + ACTIONS(1145), 14, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42040,11 +42307,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1166), 20, + anon_sym_instanceof, + ACTIONS(1147), 23, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -42057,21 +42329,20 @@ static 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, - [20336] = 5, + [20506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(463), 1, - sym__automatic_semicolon, - ACTIONS(455), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(459), 13, - anon_sym_STAR, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1424), 1, anon_sym_in, + ACTIONS(1427), 1, + anon_sym_of, + ACTIONS(452), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42083,7 +42354,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(461), 22, + ACTIONS(454), 23, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42106,14 +42378,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20386] = 5, + [20558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, - anon_sym_EQ, - ACTIONS(453), 1, + ACTIONS(476), 1, sym__automatic_semicolon, - ACTIONS(419), 13, + ACTIONS(468), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(472), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42127,9 +42400,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(417), 23, + ACTIONS(474), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42151,203 +42423,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20436] = 22, + [20608] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, - anon_sym_AMP, - ACTIONS(1256), 1, - anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [20520] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1391), 1, - anon_sym_COMMA, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1429), 1, + anon_sym_RPAREN, + STATE(1033), 1, + aux_sym_array_repeat1, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(569), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20606] = 23, + [20696] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, - anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1391), 1, - anon_sym_COMMA, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1431), 1, + anon_sym_RPAREN, + STATE(1061), 1, + aux_sym_array_repeat1, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(569), 2, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20692] = 5, + [20784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(486), 1, sym__automatic_semicolon, - ACTIONS(439), 2, + ACTIONS(478), 2, anon_sym_else, anon_sym_while, - ACTIONS(443), 13, + ACTIONS(482), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42361,7 +42573,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(445), 22, + ACTIONS(484), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42384,191 +42596,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20742] = 24, + [20834] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1407), 1, - anon_sym_RBRACK, - STATE(1071), 1, - aux_sym_array_repeat1, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [20830] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1409), 1, - anon_sym_RPAREN, - STATE(1047), 1, - aux_sym_array_repeat1, - ACTIONS(1097), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20918] = 6, + [20920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 1, - anon_sym_EQ, - ACTIONS(1411), 1, - anon_sym_in, - ACTIONS(1414), 1, - anon_sym_of, - ACTIONS(1151), 12, + ACTIONS(1309), 13, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1153), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [20970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - anon_sym_EQ, - ACTIONS(1416), 1, anon_sym_in, - ACTIONS(1419), 1, - anon_sym_of, - ACTIONS(1175), 12, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42580,9 +42676,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 23, + ACTIONS(1311), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42604,12 +42701,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21022] = 4, + [20965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 1, - anon_sym_EQ, - ACTIONS(1151), 13, + ACTIONS(1386), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42623,7 +42718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 24, + ACTIONS(1388), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -42648,143 +42743,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21070] = 22, + [21010] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1421), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1115), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21154] = 24, + [21093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(588), 1, + ACTIONS(1382), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1384), 24, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1089), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1091), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1093), 1, anon_sym_DOT, - ACTIONS(1095), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1423), 1, - anon_sym_RPAREN, - STATE(994), 1, - aux_sym_array_repeat1, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, + 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, - [21242] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, - anon_sym_EQ, - ACTIONS(1425), 1, - anon_sym_in, - ACTIONS(1428), 1, - anon_sym_of, - ACTIONS(421), 12, + ACTIONS(1074), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42796,9 +42863,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 23, + ACTIONS(1076), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42820,73 +42888,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21294] = 23, + [21183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, - anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1435), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + ACTIONS(452), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1391), 1, - anon_sym_COMMA, - ACTIONS(1192), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(454), 20, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [21380] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 13, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42900,7 +42949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1069), 24, + ACTIONS(1380), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -42925,129 +42974,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21425] = 19, + [21277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(995), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1085), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1442), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 5, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [21502] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(997), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1091), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1093), 1, anon_sym_DOT, - ACTIONS(1095), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, - anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1141), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, + 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, - [21585] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43061,7 +43033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 24, + ACTIONS(1344), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43086,10 +43058,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21630] = 3, + [21367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43103,7 +43075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 24, + ACTIONS(1344), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43128,10 +43100,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21675] = 3, + [21412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(992), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43145,7 +43117,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(994), 24, + ACTIONS(1344), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43170,10 +43142,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21720] = 3, + [21457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43187,7 +43159,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1344), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43212,150 +43184,176 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21765] = 22, + [21502] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1437), 1, + anon_sym_RBRACE, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1196), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21848] = 22, + [21587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1364), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1452), 1, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1454), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1366), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, - ACTIONS(1097), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1137), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, + anon_sym_BQUOTE, + [21632] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1439), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21931] = 11, + [21717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1085), 13, + ACTIONS(1333), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43369,80 +43367,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 14, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1335), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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, - [21992] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21762] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1444), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1441), 1, + anon_sym_RBRACE, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 6, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [22063] = 3, + [21847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 13, + ACTIONS(506), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43456,7 +43471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1337), 24, + ACTIONS(508), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43481,16 +43496,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22108] = 6, + [21892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1399), 1, - anon_sym_QMARK_DOT, - ACTIONS(1228), 13, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43504,12 +43513,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1230), 21, + ACTIONS(1372), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -43526,10 +43538,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22159] = 3, + [21937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(1287), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43543,7 +43555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1222), 24, + ACTIONS(1289), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43568,10 +43580,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22204] = 3, + [21982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1368), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43585,7 +43597,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1306), 24, + ACTIONS(1155), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43610,114 +43622,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22249] = 23, + [22027] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1456), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1443), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [22334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1228), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1230), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1139), 5, 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, - [22379] = 3, + [22112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(482), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43731,7 +43701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1270), 24, + ACTIONS(484), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43756,10 +43726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22424] = 3, + [22157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 13, + ACTIONS(472), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43773,7 +43743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1081), 24, + ACTIONS(474), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43798,176 +43768,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22469] = 23, + [22202] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1458), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1445), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [22554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1170), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [22599] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1460), 1, - anon_sym_RBRACE, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22684] = 3, + [22287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1318), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43981,7 +43847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1274), 24, + ACTIONS(1320), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44006,175 +43872,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22729] = 3, + [22332] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1137), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, + ACTIONS(406), 1, anon_sym_BQUOTE, - [22774] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1462), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22857] = 23, + [22417] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1464), 1, - anon_sym_RBRACE, - ACTIONS(1097), 2, + ACTIONS(1449), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22942] = 3, + [22502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 13, + ACTIONS(1070), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44188,7 +44013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 24, + ACTIONS(1072), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44213,279 +44038,238 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22987] = 22, + [22547] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1451), 1, + anon_sym_COLON, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1355), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23070] = 22, + [22632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1453), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1456), 1, + anon_sym_COLON, + ACTIONS(995), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1238), 1, - anon_sym_LBRACK, - ACTIONS(1242), 1, - anon_sym_DOT, - ACTIONS(1244), 1, - anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_AMP_AMP, - ACTIONS(1254), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1256), 1, anon_sym_PIPE, - ACTIONS(1260), 1, - anon_sym_STAR_STAR, - ACTIONS(1264), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1258), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(997), 22, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1232), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1252), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1262), 5, + 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, - [23153] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22681] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1176), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1331), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23236] = 5, + [22764] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_COLON, - ACTIONS(992), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(994), 22, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_DOT, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 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(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 13, + ACTIONS(1172), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1381), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, 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, - [23330] = 3, + [22847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(545), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44499,7 +44283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1294), 24, + ACTIONS(547), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44524,198 +44308,255 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23375] = 3, + [22892] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 13, - anon_sym_STAR, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1129), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, anon_sym_AMP, + ACTIONS(1137), 1, anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(445), 24, - sym__automatic_semicolon, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1484), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, 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, - [23420] = 23, + [22975] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1473), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1143), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23505] = 3, + [23058] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, - anon_sym_STAR, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1129), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, anon_sym_AMP, + ACTIONS(1137), 1, anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1486), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1288), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, 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, - [23550] = 3, + [23143] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 13, - anon_sym_STAR, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(1217), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_DOT, + ACTIONS(1225), 1, + anon_sym_QMARK_DOT, + ACTIONS(1227), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1229), 1, + anon_sym_AMP_AMP, + ACTIONS(1235), 1, anon_sym_AMP, + ACTIONS(1237), 1, anon_sym_PIPE, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1280), 24, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1488), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(609), 2, + sym_template_string, + sym_arguments, + ACTIONS(1213), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1221), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1243), 5, 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, - [23595] = 3, + [23226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 13, + ACTIONS(1283), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44729,7 +44570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 24, + ACTIONS(1285), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44754,186 +44595,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23640] = 23, + [23271] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1475), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1153), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23725] = 14, + [23354] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1444), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1085), 8, + ACTIONS(1125), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1129), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1087), 11, - 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, - [23792] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1490), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1184), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23875] = 3, + [23439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 13, + ACTIONS(1305), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44947,7 +44735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1210), 24, + ACTIONS(1307), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44972,66 +44760,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23920] = 17, + [23484] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1444), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, + anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1155), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1085), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1087), 6, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [23993] = 3, + [23567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 13, + ACTIONS(1279), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45045,7 +44838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(501), 24, + ACTIONS(1281), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45070,76 +44863,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24038] = 23, + [23612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(496), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1117), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1127), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1477), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(498), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, + 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, - [24123] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1492), 1, anon_sym_LPAREN, - ACTIONS(1482), 1, + ACTIONS(1495), 1, anon_sym_COLON, - ACTIONS(1383), 13, + ACTIONS(1374), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45153,7 +44926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 22, + ACTIONS(1376), 22, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -45176,10 +44949,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24172] = 3, + [23706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(1346), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45193,7 +44966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1284), 24, + ACTIONS(1348), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45218,72 +44991,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24217] = 23, + [23751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(528), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1117), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1127), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1484), 1, - anon_sym_COLON, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1109), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(530), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1115), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1133), 5, + 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, - [24302] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(518), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45297,7 +45050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1302), 24, + ACTIONS(520), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45322,195 +45075,275 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24347] = 23, + [23841] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1486), 1, + ACTIONS(1497), 1, anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24432] = 22, + [23926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1394), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1259), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1452), 1, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1454), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1261), 21, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, - ACTIONS(1097), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1186), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, + anon_sym_BQUOTE, + [23977] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1106), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1108), 14, + 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, - STATE(453), 2, + 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, + [24038] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1106), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24515] = 23, + ACTIONS(1108), 6, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [24109] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, - anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1488), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1106), 8, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1108), 11, + 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, - [24600] = 3, + [24176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1205), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45524,7 +45357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 24, + ACTIONS(1207), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45549,72 +45382,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24645] = 23, + [24221] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, - anon_sym_AMP_AMP, - ACTIONS(1125), 1, - anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1490), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1106), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24730] = 3, + ACTIONS(1108), 6, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [24294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(1275), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45628,7 +45455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1202), 24, + ACTIONS(1277), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45653,72 +45480,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24775] = 23, + [24339] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1492), 1, - anon_sym_RBRACE, - ACTIONS(1097), 2, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24860] = 3, + [24424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1291), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45732,7 +45559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 24, + ACTIONS(1293), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45757,175 +45584,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24905] = 22, + [24469] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1170), 2, + ACTIONS(1123), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24988] = 3, + [24552] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1139), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, - [25033] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, - anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1494), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1106), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1108), 5, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25118] = 3, + [24629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1358), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45939,7 +45720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1298), 24, + ACTIONS(1172), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45964,10 +45745,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25163] = 3, + [24674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 13, + ACTIONS(1374), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45981,7 +45762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(435), 24, + ACTIONS(1376), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46006,78 +45787,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25208] = 3, + [24719] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(491), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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, + ACTIONS(406), 1, anon_sym_BQUOTE, - [25253] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1444), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1085), 10, + ACTIONS(1106), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -46088,7 +45827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1087), 11, + ACTIONS(1108), 11, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, @@ -46100,10 +45839,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25318] = 3, + [24784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1273), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46117,7 +45856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, + ACTIONS(1184), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46142,216 +45881,192 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25363] = 3, + [24829] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1377), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_DOT, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1151), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, 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, - [25408] = 21, + [24912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1085), 1, - anon_sym_QMARK, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1106), 1, + anon_sym_QMARK, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1452), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1097), 2, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1087), 3, + ACTIONS(1108), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_QMARK_QMARK, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 13, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1065), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1480), 5, 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, - [25534] = 23, + [24993] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1340), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25619] = 3, + [25076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, + ACTIONS(1259), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46365,7 +46080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 24, + ACTIONS(1261), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46390,10 +46105,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25664] = 3, + [25121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, + ACTIONS(1269), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46407,7 +46122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 24, + ACTIONS(1271), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46432,10 +46147,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25709] = 3, + [25166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1267), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46449,7 +46164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1160), 24, + ACTIONS(1199), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46474,10 +46189,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25754] = 3, + [25211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 13, + ACTIONS(1354), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46491,7 +46206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1206), 24, + ACTIONS(1356), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46516,10 +46231,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25799] = 3, + [25256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1333), 13, + ACTIONS(1257), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46533,7 +46248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1162), 24, + ACTIONS(1186), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46558,52 +46273,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25844] = 3, + [25301] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, - anon_sym_STAR, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1460), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1464), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1466), 1, + anon_sym_AMP_AMP, + ACTIONS(1472), 1, anon_sym_AMP, + ACTIONS(1474), 1, anon_sym_PIPE, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1188), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1480), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25384] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_DOT, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1501), 1, + anon_sym_RPAREN, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, 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, - [25889] = 3, + [25469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(1253), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46617,7 +46413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 24, + ACTIONS(1255), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46642,10 +46438,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25934] = 3, + [25514] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, + anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1174), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46659,7 +46516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 24, + ACTIONS(1297), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46684,52 +46541,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25979] = 3, + [25642] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1367), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_DOT, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1184), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, 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, - [26024] = 3, + [25725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 13, + ACTIONS(1066), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46743,7 +46619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1343), 24, + ACTIONS(1068), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46768,10 +46644,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26069] = 3, + [25770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 13, + ACTIONS(1350), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46785,7 +46661,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1218), 24, + ACTIONS(1352), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46810,10 +46686,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26114] = 3, + [25815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1329), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46827,7 +46703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 24, + ACTIONS(1331), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46852,132 +46728,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26159] = 22, + [25860] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1503), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1111), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26242] = 22, + [25945] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1198), 2, + ACTIONS(1199), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26325] = 3, + [26028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 13, + ACTIONS(1325), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46991,7 +46868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 24, + ACTIONS(1327), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47016,133 +46893,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26370] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, - anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1139), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26453] = 23, + [26073] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, - anon_sym_COMMA, - ACTIONS(1498), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1186), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26538] = 3, + [26156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 13, + ACTIONS(555), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47156,7 +46971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(475), 24, + ACTIONS(557), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47181,193 +46996,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26583] = 22, + [26201] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1217), 1, + anon_sym_in, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1227), 1, + anon_sym_QMARK, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1241), 1, + anon_sym_STAR_STAR, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1194), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1505), 1, + anon_sym_SEMI, + ACTIONS(1507), 1, + sym__automatic_semicolon, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26666] = 22, + [26286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1299), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1452), 1, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1160), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26749] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1174), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1091), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1093), 1, anon_sym_DOT, - ACTIONS(1095), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, - anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1162), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, + 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, - [26832] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 13, + ACTIONS(1301), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47381,7 +47117,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(525), 24, + ACTIONS(1303), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47406,195 +47142,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26877] = 22, + [26376] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, - anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1188), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26960] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1131), 1, - anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1190), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1500), 1, + ACTIONS(1509), 1, anon_sym_RPAREN, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27045] = 23, + [26461] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1236), 1, + ACTIONS(1217), 1, anon_sym_in, - ACTIONS(1238), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_QMARK, - ACTIONS(1248), 1, + ACTIONS(1229), 1, anon_sym_AMP_AMP, - ACTIONS(1254), 1, + ACTIONS(1235), 1, anon_sym_AMP, - ACTIONS(1256), 1, + ACTIONS(1237), 1, anon_sym_PIPE, - ACTIONS(1260), 1, + ACTIONS(1241), 1, anon_sym_STAR_STAR, - ACTIONS(1264), 1, + ACTIONS(1245), 1, anon_sym_QMARK_QMARK, - ACTIONS(1502), 1, + ACTIONS(1511), 1, anon_sym_SEMI, - ACTIONS(1504), 1, + ACTIONS(1513), 1, sym__automatic_semicolon, - ACTIONS(1250), 2, + ACTIONS(1231), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1258), 2, + ACTIONS(1239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1266), 2, + ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1232), 3, + ACTIONS(1213), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1252), 3, + ACTIONS(1233), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1240), 4, + ACTIONS(1221), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1262), 5, + ACTIONS(1243), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27130] = 3, + [26546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 13, + ACTIONS(1360), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47608,7 +47283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(461), 24, + ACTIONS(1362), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47633,316 +47308,644 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27175] = 22, + [26591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1086), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1084), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, - ACTIONS(1089), 1, + [26636] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1157), 1, + anon_sym_COMMA, + ACTIONS(1515), 1, + anon_sym_RBRACE, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1444), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1211), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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, + [26766] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1448), 1, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1316), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27257] = 22, + [26849] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1508), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1170), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27339] = 22, + [26932] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1118), 1, + anon_sym_STAR_STAR, + ACTIONS(1125), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1129), 1, + anon_sym_QMARK, + ACTIONS(1131), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1444), 1, + ACTIONS(1137), 1, + anon_sym_PIPE, + ACTIONS(1141), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1517), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1112), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1114), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1139), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27014] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1118), 1, anon_sym_STAR_STAR, - ACTIONS(1448), 1, + ACTIONS(1125), 1, + anon_sym_in, + ACTIONS(1129), 1, anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1131), 1, + anon_sym_AMP_AMP, + ACTIONS(1135), 1, + anon_sym_AMP, + ACTIONS(1137), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1141), 1, anon_sym_QMARK_QMARK, - ACTIONS(1510), 1, - anon_sym_COLON, - ACTIONS(1097), 2, + ACTIONS(1519), 1, + anon_sym_RBRACK, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1133), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1112), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1114), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1127), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1139), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27421] = 22, + [27096] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1448), 1, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27178] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1466), 1, + anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1512), 1, + ACTIONS(1523), 1, anon_sym_COLON, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27503] = 22, + [27260] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1514), 1, + ACTIONS(1525), 1, anon_sym_COLON, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1468), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, + STATE(476), 2, + sym_template_string, + sym_arguments, + ACTIONS(1458), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1470), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1462), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1480), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27342] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_BQUOTE, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_DOT, + ACTIONS(1098), 1, + anon_sym_QMARK_DOT, + ACTIONS(1460), 1, + anon_sym_in, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, + anon_sym_AMP_AMP, + ACTIONS(1472), 1, + anon_sym_AMP, + ACTIONS(1474), 1, + anon_sym_PIPE, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1527), 1, + anon_sym_COLON, + ACTIONS(1100), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(453), 2, + ACTIONS(1476), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27585] = 6, + [27424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 1, + ACTIONS(1194), 1, anon_sym_RBRACK, - ACTIONS(1182), 1, + ACTIONS(1197), 1, anon_sym_EQ, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_COMMA, - ACTIONS(1175), 13, + ACTIONS(1190), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47956,7 +47959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 20, + ACTIONS(1192), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -47977,16 +47980,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27635] = 6, + [27474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1165), 1, anon_sym_RBRACK, - ACTIONS(1158), 1, + ACTIONS(1168), 1, anon_sym_EQ, - ACTIONS(1414), 1, + ACTIONS(1416), 1, anon_sym_COMMA, - ACTIONS(1151), 13, + ACTIONS(1161), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48000,7 +48003,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 20, + ACTIONS(1163), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -48021,16 +48024,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27685] = 6, + [27524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, + ACTIONS(456), 1, anon_sym_EQ, - ACTIONS(1172), 1, + ACTIONS(1120), 1, anon_sym_RBRACK, - ACTIONS(1428), 1, + ACTIONS(1427), 1, anon_sym_COMMA, - ACTIONS(421), 13, + ACTIONS(452), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48044,7 +48047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 20, + ACTIONS(454), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -48065,76 +48068,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27735] = 22, + [27574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1089), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1223), 1, anon_sym_DOT, - ACTIONS(1095), 1, + ACTIONS(1225), 1, anon_sym_QMARK_DOT, - ACTIONS(1113), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1117), 1, + ACTIONS(1464), 1, anon_sym_QMARK, - ACTIONS(1119), 1, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1125), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1127), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1131), 1, + ACTIONS(1478), 1, anon_sym_STAR_STAR, - ACTIONS(1135), 1, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1516), 1, - anon_sym_RBRACK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1121), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1129), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(453), 2, + STATE(609), 2, sym_template_string, sym_arguments, - ACTIONS(1109), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1123), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1115), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1133), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27817] = 6, + [27653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 1, + ACTIONS(456), 1, anon_sym_EQ, - ACTIONS(1425), 1, + ACTIONS(1424), 1, anon_sym_in, - ACTIONS(1428), 1, + ACTIONS(1427), 1, anon_sym_of, - ACTIONS(421), 12, + ACTIONS(452), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -48147,7 +48148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(423), 20, + ACTIONS(454), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -48168,132 +48169,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27866] = 21, + [27702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(406), 1, anon_sym_BQUOTE, - ACTIONS(1234), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1238), 1, + ACTIONS(1094), 1, anon_sym_LBRACK, - ACTIONS(1242), 1, + ACTIONS(1096), 1, anon_sym_DOT, - ACTIONS(1244), 1, + ACTIONS(1098), 1, anon_sym_QMARK_DOT, - ACTIONS(1432), 1, + ACTIONS(1460), 1, anon_sym_in, - ACTIONS(1436), 1, + ACTIONS(1464), 1, + anon_sym_QMARK, + ACTIONS(1466), 1, anon_sym_AMP_AMP, - ACTIONS(1440), 1, + ACTIONS(1472), 1, anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, + ACTIONS(1474), 1, anon_sym_PIPE, - ACTIONS(1454), 1, + ACTIONS(1478), 1, + anon_sym_STAR_STAR, + ACTIONS(1482), 1, anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, + ACTIONS(1100), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1442), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1450), 2, + ACTIONS(1468), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(569), 2, - sym_template_string, - sym_arguments, - ACTIONS(1430), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1438), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1434), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27945] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1095), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 1, - anon_sym_in, - ACTIONS(1436), 1, - anon_sym_AMP_AMP, - ACTIONS(1440), 1, - anon_sym_AMP, - ACTIONS(1444), 1, - anon_sym_STAR_STAR, - ACTIONS(1448), 1, - anon_sym_QMARK, - ACTIONS(1452), 1, - anon_sym_PIPE, - ACTIONS(1454), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1442), 2, + ACTIONS(1476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1450), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(453), 2, + STATE(476), 2, sym_template_string, sym_arguments, - ACTIONS(1430), 3, + ACTIONS(1458), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1438), 3, + ACTIONS(1470), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1434), 4, + ACTIONS(1462), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 5, + ACTIONS(1480), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28024] = 6, + [27781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1197), 1, anon_sym_EQ, - ACTIONS(1416), 1, + ACTIONS(1404), 1, anon_sym_in, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_of, - ACTIONS(1175), 12, + ACTIONS(1190), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -48306,7 +48249,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 20, + ACTIONS(1192), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -48327,16 +48270,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28073] = 6, + [27830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 1, + ACTIONS(1168), 1, anon_sym_EQ, - ACTIONS(1411), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1414), 1, + ACTIONS(1416), 1, anon_sym_of, - ACTIONS(1151), 12, + ACTIONS(1161), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -48349,7 +48292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 20, + ACTIONS(1163), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -48370,752 +48313,751 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28122] = 23, + [27879] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1529), 1, + sym_identifier, + ACTIONS(1531), 1, + anon_sym_export, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1522), 1, + ACTIONS(1535), 1, + anon_sym_COMMA, + ACTIONS(1537), 1, anon_sym_RBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1526), 1, + ACTIONS(1541), 1, anon_sym_async, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1530), 1, + ACTIONS(1545), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1044), 1, - aux_sym_object_pattern_repeat1, - STATE(1048), 1, + STATE(1058), 1, aux_sym_object_repeat1, - ACTIONS(1518), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1532), 2, + STATE(1059), 1, + aux_sym_object_pattern_repeat1, + STATE(1060), 1, + sym__import_export_specifier, + ACTIONS(1547), 2, anon_sym_get, anon_sym_set, - STATE(1049), 3, + STATE(1055), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1056), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1057), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1050), 3, + STATE(1287), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [27964] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(128), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(138), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1539), 1, + anon_sym_LBRACK, + ACTIONS(1543), 1, + sym_number, + ACTIONS(1551), 1, + anon_sym_RBRACE, + ACTIONS(1553), 1, + anon_sym_async, + ACTIONS(1555), 1, + anon_sym_static, + STATE(691), 1, + aux_sym_export_statement_repeat1, + STATE(745), 1, + sym_decorator, + STATE(992), 1, + aux_sym_object_repeat1, + STATE(1059), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1549), 2, + anon_sym_export, + sym_identifier, + ACTIONS(1557), 2, + anon_sym_get, + anon_sym_set, + STATE(990), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1052), 3, + STATE(1055), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28202] = 23, + [28044] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1536), 1, + ACTIONS(1561), 1, anon_sym_RBRACE, - ACTIONS(1538), 1, + ACTIONS(1563), 1, anon_sym_async, - ACTIONS(1540), 1, + ACTIONS(1565), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1018), 1, + STATE(992), 1, aux_sym_object_repeat1, - STATE(1044), 1, + STATE(1059), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1534), 2, + ACTIONS(1559), 2, anon_sym_export, sym_identifier, - ACTIONS(1542), 2, + ACTIONS(1567), 2, anon_sym_get, anon_sym_set, - STATE(1016), 3, + STATE(990), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1049), 3, + STATE(1055), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1057), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1052), 3, + STATE(1287), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [28124] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(128), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(138), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1539), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + sym_number, + ACTIONS(1545), 1, + anon_sym_static, + ACTIONS(1569), 1, + anon_sym_RBRACE, + STATE(691), 1, + aux_sym_export_statement_repeat1, + STATE(745), 1, + sym_decorator, + STATE(1058), 1, + aux_sym_object_repeat1, + STATE(1059), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1531), 2, + anon_sym_export, + sym_identifier, + ACTIONS(1547), 2, + anon_sym_get, + anon_sym_set, + STATE(1055), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1056), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28282] = 23, + [28204] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1546), 1, + ACTIONS(1573), 1, anon_sym_RBRACE, - ACTIONS(1548), 1, + ACTIONS(1575), 1, anon_sym_async, - ACTIONS(1550), 1, + ACTIONS(1577), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1044), 1, - aux_sym_object_pattern_repeat1, - STATE(1048), 1, + STATE(992), 1, aux_sym_object_repeat1, - ACTIONS(1544), 2, + STATE(1059), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1571), 2, anon_sym_export, sym_identifier, - ACTIONS(1552), 2, + ACTIONS(1579), 2, anon_sym_get, anon_sym_set, - STATE(1049), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1050), 3, + STATE(990), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1052), 3, + STATE(1055), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28362] = 23, + [28284] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1556), 1, + ACTIONS(1583), 1, anon_sym_RBRACE, - ACTIONS(1558), 1, + ACTIONS(1585), 1, anon_sym_async, - ACTIONS(1560), 1, + ACTIONS(1587), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1018), 1, + STATE(992), 1, aux_sym_object_repeat1, - STATE(1044), 1, + STATE(1059), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1554), 2, + ACTIONS(1581), 2, anon_sym_export, sym_identifier, - ACTIONS(1562), 2, + ACTIONS(1589), 2, anon_sym_get, anon_sym_set, - STATE(1016), 3, + STATE(990), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1049), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1052), 3, + STATE(1055), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28442] = 23, + [28364] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1566), 1, + ACTIONS(1593), 1, anon_sym_RBRACE, - ACTIONS(1568), 1, + ACTIONS(1595), 1, anon_sym_async, - ACTIONS(1570), 1, + ACTIONS(1597), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1018), 1, + STATE(1058), 1, aux_sym_object_repeat1, - STATE(1044), 1, + STATE(1059), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1564), 2, + ACTIONS(1591), 2, anon_sym_export, sym_identifier, - ACTIONS(1572), 2, + ACTIONS(1599), 2, anon_sym_get, anon_sym_set, - STATE(1016), 3, + STATE(1055), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1056), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1049), 3, + STATE(1057), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1052), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1251), 3, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28522] = 23, + [28444] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1576), 1, + ACTIONS(1603), 1, + anon_sym_COMMA, + ACTIONS(1606), 1, anon_sym_RBRACE, - ACTIONS(1578), 1, + ACTIONS(1610), 1, anon_sym_async, - ACTIONS(1580), 1, + ACTIONS(1612), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1018), 1, - aux_sym_object_repeat1, - STATE(1044), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1574), 2, + ACTIONS(1601), 2, anon_sym_export, sym_identifier, - ACTIONS(1582), 2, + ACTIONS(1614), 2, anon_sym_get, anon_sym_set, - STATE(1016), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1049), 3, + STATE(1057), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1052), 3, + STATE(1180), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1203), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28602] = 20, + [28518] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(103), 1, + ACTIONS(138), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1528), 1, + ACTIONS(1543), 1, sym_number, - ACTIONS(1589), 1, + ACTIONS(1610), 1, anon_sym_async, - ACTIONS(1591), 1, + ACTIONS(1612), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - ACTIONS(1584), 2, + ACTIONS(1601), 2, anon_sym_export, sym_identifier, - ACTIONS(1586), 2, + ACTIONS(1603), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1593), 2, + ACTIONS(1614), 2, anon_sym_get, anon_sym_set, - STATE(1049), 3, + STATE(1057), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1177), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1179), 3, + STATE(1180), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, + STATE(1203), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1287), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28674] = 14, + [28590] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(1599), 1, + ACTIONS(1620), 1, anon_sym_RBRACE, - ACTIONS(1601), 1, + ACTIONS(1622), 1, sym_number, - STATE(1044), 1, + STATE(1059), 1, aux_sym_object_pattern_repeat1, - STATE(1052), 3, + STATE(1055), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1319), 3, + STATE(1269), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1595), 6, + STATE(1287), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1616), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [28728] = 14, + [28644] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(1601), 1, + ACTIONS(1622), 1, sym_number, - ACTIONS(1605), 1, + ACTIONS(1626), 1, anon_sym_RBRACE, - STATE(1019), 1, + STATE(993), 1, aux_sym_object_pattern_repeat1, - STATE(1015), 3, + STATE(989), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1319), 3, + STATE(1269), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1603), 6, + STATE(1287), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1624), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [28782] = 12, + [28698] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1524), 1, + ACTIONS(1539), 1, anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1622), 1, sym_number, - ACTIONS(1609), 2, + ACTIONS(1630), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1179), 3, + STATE(1180), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1319), 3, + STATE(1269), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1607), 6, + STATE(1287), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1628), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [28831] = 17, + [28747] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(592), 1, + ACTIONS(628), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1617), 1, + ACTIONS(1638), 1, anon_sym_async, - ACTIONS(1619), 1, + ACTIONS(1640), 1, sym_number, - ACTIONS(1621), 1, + ACTIONS(1642), 1, anon_sym_static, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - ACTIONS(1611), 2, + ACTIONS(1632), 2, anon_sym_export, sym_identifier, - ACTIONS(1613), 2, + ACTIONS(1634), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1623), 2, + ACTIONS(1644), 2, anon_sym_get, anon_sym_set, - STATE(1023), 3, + STATE(1003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1177), 3, + STATE(1203), 3, sym_spread_element, sym_method_definition, sym_pair, - [28890] = 15, + [28806] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(122), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(717), 1, + anon_sym_async, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(728), 2, + STATE(1045), 1, + aux_sym_object_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 3, anon_sym_export, - anon_sym_async, sym_identifier, anon_sym_static, - [28943] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(720), 1, - sym_number, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_EQ, - ACTIONS(1631), 1, - anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, - aux_sym_object_repeat1, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - [28996] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(674), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, - sym_number, - ACTIONS(726), 1, - anon_sym_async, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, - aux_sym_object_repeat1, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(724), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29051] = 16, + [28861] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(726), 1, + ACTIONS(717), 1, anon_sym_async, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1631), 1, + ACTIONS(1652), 1, anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(728), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(724), 3, + ACTIONS(712), 3, anon_sym_export, sym_identifier, anon_sym_static, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [29106] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(674), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, - sym_number, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, - aux_sym_object_repeat1, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - [29159] = 18, + [28916] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -49124,39 +49066,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1656), 1, anon_sym_RBRACE, - ACTIONS(1637), 1, + ACTIONS(1658), 1, anon_sym_LBRACK, - ACTIONS(1639), 1, + ACTIONS(1660), 1, anon_sym_async, - ACTIONS(1641), 1, + ACTIONS(1662), 1, sym_number, - ACTIONS(1643), 1, + ACTIONS(1664), 1, anon_sym_static, - STATE(660), 1, + STATE(662), 1, aux_sym_class_body_repeat1, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(744), 1, + STATE(730), 1, sym_method_definition, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1128), 1, + STATE(1097), 1, sym_public_field_definition, - ACTIONS(1633), 2, + ACTIONS(1654), 2, anon_sym_export, sym_identifier, - ACTIONS(1645), 2, + ACTIONS(1666), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + STATE(841), 3, sym_string, sym__property_name, sym_computed_property_name, - [29218] = 18, + [28975] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -49165,1355 +49107,1297 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(1637), 1, + ACTIONS(1658), 1, anon_sym_LBRACK, - ACTIONS(1639), 1, + ACTIONS(1660), 1, anon_sym_async, - ACTIONS(1641), 1, + ACTIONS(1662), 1, sym_number, - ACTIONS(1643), 1, + ACTIONS(1664), 1, anon_sym_static, - ACTIONS(1647), 1, + ACTIONS(1668), 1, anon_sym_RBRACE, - STATE(661), 1, + STATE(667), 1, aux_sym_class_body_repeat1, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(744), 1, + STATE(730), 1, sym_method_definition, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1128), 1, + STATE(1097), 1, sym_public_field_definition, - ACTIONS(1633), 2, + ACTIONS(1654), 2, anon_sym_export, sym_identifier, - ACTIONS(1645), 2, + ACTIONS(1666), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + STATE(841), 3, sym_string, sym__property_name, sym_computed_property_name, - [29277] = 18, + [29034] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_STAR, - ACTIONS(1655), 1, + ACTIONS(101), 1, anon_sym_RBRACE, - ACTIONS(1657), 1, - anon_sym_LBRACK, - ACTIONS(1660), 1, - anon_sym_async, - ACTIONS(1663), 1, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(1666), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1669), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1672), 1, - anon_sym_AT, - ACTIONS(1675), 1, - anon_sym_static, - STATE(661), 1, - aux_sym_class_body_repeat1, - STATE(695), 1, - aux_sym_export_statement_repeat1, - STATE(744), 1, - sym_method_definition, - STATE(750), 1, - sym_decorator, - STATE(1128), 1, - sym_public_field_definition, - ACTIONS(1649), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1678), 2, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(1650), 1, + anon_sym_EQ, + STATE(1034), 1, + aux_sym_object_repeat1, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29336] = 18, + ACTIONS(712), 4, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + [29087] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(77), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(93), 1, - anon_sym_STAR, - ACTIONS(1637), 1, - anon_sym_LBRACK, - ACTIONS(1639), 1, - anon_sym_async, - ACTIONS(1641), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1643), 1, - anon_sym_static, - ACTIONS(1681), 1, + ACTIONS(717), 1, + anon_sym_async, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(1670), 1, anon_sym_RBRACE, - STATE(664), 1, - aux_sym_class_body_repeat1, - STATE(695), 1, - aux_sym_export_statement_repeat1, - STATE(744), 1, - sym_method_definition, - STATE(750), 1, - sym_decorator, - STATE(1128), 1, - sym_public_field_definition, - ACTIONS(1633), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1645), 2, + STATE(1034), 1, + aux_sym_object_repeat1, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(712), 3, + anon_sym_export, + sym_identifier, + anon_sym_static, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29395] = 18, + [29142] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(77), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(93), 1, - anon_sym_STAR, - ACTIONS(1637), 1, - anon_sym_LBRACK, - ACTIONS(1639), 1, - anon_sym_async, - ACTIONS(1641), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1643), 1, - anon_sym_static, - ACTIONS(1683), 1, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(1670), 1, anon_sym_RBRACE, - STATE(661), 1, - aux_sym_class_body_repeat1, - STATE(695), 1, - aux_sym_export_statement_repeat1, - STATE(744), 1, - sym_method_definition, - STATE(750), 1, - sym_decorator, - STATE(1128), 1, - sym_public_field_definition, - ACTIONS(1633), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1645), 2, + STATE(1034), 1, + aux_sym_object_repeat1, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29454] = 18, + ACTIONS(712), 4, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + [29195] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, + ACTIONS(122), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(77), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(93), 1, - anon_sym_STAR, - ACTIONS(1637), 1, + ACTIONS(708), 1, + sym_number, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1639), 1, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(1650), 1, + anon_sym_EQ, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + STATE(1045), 1, + aux_sym_object_repeat1, + ACTIONS(719), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 4, + anon_sym_export, anon_sym_async, - ACTIONS(1641), 1, - sym_number, - ACTIONS(1643), 1, + sym_identifier, anon_sym_static, - ACTIONS(1685), 1, + [29248] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 1, anon_sym_RBRACE, - STATE(661), 1, - aux_sym_class_body_repeat1, - STATE(695), 1, - aux_sym_export_statement_repeat1, - STATE(744), 1, - sym_method_definition, - STATE(750), 1, - sym_decorator, - STATE(1128), 1, - sym_public_field_definition, - ACTIONS(1633), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1645), 2, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(708), 1, + sym_number, + ACTIONS(717), 1, + anon_sym_async, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(1650), 1, + anon_sym_EQ, + STATE(1034), 1, + aux_sym_object_repeat1, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(712), 3, + anon_sym_export, + sym_identifier, + anon_sym_static, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29513] = 18, + [29303] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(93), 1, + ACTIONS(1675), 1, anon_sym_STAR, - ACTIONS(1637), 1, + ACTIONS(1678), 1, + anon_sym_RBRACE, + ACTIONS(1680), 1, anon_sym_LBRACK, - ACTIONS(1639), 1, + ACTIONS(1683), 1, anon_sym_async, - ACTIONS(1641), 1, + ACTIONS(1686), 1, + anon_sym_DQUOTE, + ACTIONS(1689), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, sym_number, - ACTIONS(1643), 1, + ACTIONS(1695), 1, + anon_sym_AT, + ACTIONS(1698), 1, anon_sym_static, - ACTIONS(1687), 1, - anon_sym_RBRACE, - STATE(663), 1, + STATE(662), 1, aux_sym_class_body_repeat1, - STATE(695), 1, + STATE(691), 1, aux_sym_export_statement_repeat1, - STATE(744), 1, + STATE(730), 1, sym_method_definition, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1128), 1, + STATE(1097), 1, sym_public_field_definition, - ACTIONS(1633), 2, + ACTIONS(1672), 2, anon_sym_export, sym_identifier, - ACTIONS(1645), 2, + ACTIONS(1701), 2, anon_sym_get, anon_sym_set, - STATE(832), 3, + STATE(841), 3, sym_string, sym__property_name, sym_computed_property_name, - [29572] = 16, + [29362] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(678), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(726), 1, - anon_sym_async, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, + ACTIONS(1704), 1, + anon_sym_RBRACE, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1045), 1, aux_sym_object_repeat1, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(724), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29627] = 16, + ACTIONS(712), 4, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + [29415] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(120), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(726), 1, + ACTIONS(717), 1, anon_sym_async, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1689), 1, - anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(728), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(724), 3, + ACTIONS(712), 3, anon_sym_export, sym_identifier, anon_sym_static, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [29682] = 15, + [29470] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(717), 1, + anon_sym_async, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1689), 1, + ACTIONS(1704), 1, anon_sym_RBRACE, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1045), 1, aux_sym_object_repeat1, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 3, anon_sym_export, - anon_sym_async, sym_identifier, anon_sym_static, - [29735] = 15, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [29525] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(120), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(678), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(728), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [29788] = 16, + [29578] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, - sym_number, - ACTIONS(726), 1, - anon_sym_async, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1658), 1, + anon_sym_LBRACK, + ACTIONS(1660), 1, + anon_sym_async, + ACTIONS(1662), 1, + sym_number, + ACTIONS(1664), 1, + anon_sym_static, + ACTIONS(1706), 1, anon_sym_RBRACE, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(724), 3, + STATE(662), 1, + aux_sym_class_body_repeat1, + STATE(691), 1, + aux_sym_export_statement_repeat1, + STATE(730), 1, + sym_method_definition, + STATE(745), 1, + sym_decorator, + STATE(1097), 1, + sym_public_field_definition, + ACTIONS(1654), 2, anon_sym_export, sym_identifier, - anon_sym_static, - STATE(1181), 3, + ACTIONS(1666), 2, + anon_sym_get, + anon_sym_set, + STATE(841), 3, sym_string, sym__property_name, sym_computed_property_name, - [29843] = 15, + [29637] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1652), 1, anon_sym_RBRACE, - STATE(976), 1, + STATE(1034), 1, aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [29896] = 16, + [29690] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, - sym_number, - ACTIONS(726), 1, - anon_sym_async, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(128), 1, anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_EQ, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(724), 3, + ACTIONS(1658), 1, + anon_sym_LBRACK, + ACTIONS(1660), 1, + anon_sym_async, + ACTIONS(1662), 1, + sym_number, + ACTIONS(1664), 1, + anon_sym_static, + ACTIONS(1708), 1, + anon_sym_RBRACE, + STATE(655), 1, + aux_sym_class_body_repeat1, + STATE(691), 1, + aux_sym_export_statement_repeat1, + STATE(730), 1, + sym_method_definition, + STATE(745), 1, + sym_decorator, + STATE(1097), 1, + sym_public_field_definition, + ACTIONS(1654), 2, anon_sym_export, sym_identifier, - anon_sym_static, - STATE(1181), 3, + ACTIONS(1666), 2, + anon_sym_get, + anon_sym_set, + STATE(841), 3, sym_string, sym__property_name, sym_computed_property_name, - [29951] = 13, + [29749] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(122), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(678), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1045), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [29999] = 13, + [29797] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1704), 1, anon_sym_RBRACE, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1627), 2, + STATE(1045), 1, + aux_sym_object_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30047] = 13, + [29845] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1631), 1, + ACTIONS(1670), 1, anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30095] = 13, + [29893] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(674), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + ACTIONS(1652), 1, + anon_sym_RBRACE, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30143] = 13, + [29941] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(101), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1689), 1, - anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30191] = 13, + [29989] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(120), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(976), 1, + STATE(1034), 1, aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30239] = 13, + [30037] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(726), 1, + ACTIONS(717), 1, anon_sym_async, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1693), 2, + ACTIONS(1710), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(724), 3, + ACTIONS(712), 3, anon_sym_export, sym_identifier, anon_sym_static, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [30286] = 12, + [30084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1693), 2, + ACTIONS(1710), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [30331] = 11, + [30129] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, - sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1713), 1, anon_sym_STAR, - ACTIONS(728), 2, + ACTIONS(1715), 1, + sym_number, + ACTIONS(1717), 2, anon_sym_get, anon_sym_set, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1181), 3, + STATE(1153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [30373] = 11, + ACTIONS(1648), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [30169] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1637), 1, + ACTIONS(1658), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1719), 1, anon_sym_async, - ACTIONS(1700), 1, + ACTIONS(1721), 1, sym_number, - ACTIONS(1702), 2, + ACTIONS(1723), 2, anon_sym_get, anon_sym_set, - ACTIONS(1633), 3, + ACTIONS(1654), 3, anon_sym_export, sym_identifier, anon_sym_static, - STATE(849), 3, + STATE(857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1627), 4, + ACTIONS(1648), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [30415] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - anon_sym_COMMA, - ACTIONS(580), 1, - anon_sym_RBRACK, - ACTIONS(584), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1708), 1, - anon_sym_LBRACK, - STATE(930), 1, - sym_pattern, - STATE(1013), 1, - aux_sym_array_pattern_repeat1, - STATE(1026), 1, - sym_assignment_pattern, - STATE(895), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1706), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [30459] = 10, + [30211] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(728), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(1627), 4, + ACTIONS(1648), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [30499] = 12, + [30251] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(584), 1, + ACTIONS(615), 1, + anon_sym_RBRACK, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1725), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1729), 1, + anon_sym_LBRACK, + STATE(933), 1, + sym_pattern, + STATE(974), 1, + sym_assignment_pattern, + STATE(977), 1, + aux_sym_array_pattern_repeat1, + STATE(891), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1727), 5, + anon_sym_export, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [30295] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(611), 1, + anon_sym_COMMA, + ACTIONS(619), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + sym_identifier, + ACTIONS(1729), 1, anon_sym_LBRACK, - ACTIONS(1710), 1, + ACTIONS(1731), 1, anon_sym_RBRACK, - STATE(914), 1, + STATE(924), 1, sym_pattern, - STATE(1033), 1, + STATE(1006), 1, sym_assignment_pattern, - STATE(1037), 1, + STATE(1010), 1, aux_sym_array_pattern_repeat1, - STATE(895), 4, + STATE(891), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1706), 5, + ACTIONS(1727), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [30543] = 10, + [30339] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(717), 1, + anon_sym_async, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1629), 1, - anon_sym_EQ, - ACTIONS(1627), 2, + ACTIONS(1646), 1, + anon_sym_STAR, + ACTIONS(719), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1693), 2, + ACTIONS(1733), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 3, anon_sym_export, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [30583] = 10, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [30383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(708), 1, + sym_number, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1646), 1, anon_sym_STAR, - ACTIONS(1714), 1, - sym_number, - ACTIONS(1716), 2, + ACTIONS(719), 2, anon_sym_get, anon_sym_set, - STATE(1138), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(1627), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + [30425] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(708), 1, + sym_number, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, anon_sym_EQ, - [30623] = 17, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1710), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 6, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [30465] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(724), 1, + ACTIONS(712), 1, sym_identifier, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, + ACTIONS(1735), 1, anon_sym_export, - ACTIONS(1720), 1, + ACTIONS(1737), 1, anon_sym_STAR, - ACTIONS(1722), 1, + ACTIONS(1739), 1, anon_sym_class, - ACTIONS(1724), 1, + ACTIONS(1741), 1, anon_sym_async, - ACTIONS(1726), 1, + ACTIONS(1743), 1, sym_number, - ACTIONS(1728), 1, + ACTIONS(1745), 1, anon_sym_static, - ACTIONS(1730), 1, + ACTIONS(1747), 1, anon_sym_get, - ACTIONS(1732), 1, + ACTIONS(1749), 1, anon_sym_set, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - STATE(1166), 3, + STATE(1212), 3, sym_string, sym__property_name, sym_computed_property_name, - [30677] = 12, + [30519] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, - sym_number, - ACTIONS(726), 1, - anon_sym_async, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, - anon_sym_STAR, - ACTIONS(728), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1627), 2, + ACTIONS(1715), 1, + sym_number, + STATE(1153), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1648), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(724), 3, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(712), 6, anon_sym_export, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [30721] = 8, + anon_sym_get, + anon_sym_set, + [30554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - STATE(1181), 3, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1627), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30756] = 8, + [30591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, + ACTIONS(708), 1, sym_number, - STATE(1138), 3, + ACTIONS(1636), 1, + anon_sym_LBRACK, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1627), 4, + ACTIONS(1648), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30791] = 10, + [30626] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1725), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1729), 1, anon_sym_LBRACK, - STATE(1027), 1, + STATE(971), 1, sym_pattern, - STATE(1140), 1, + STATE(1085), 1, sym_assignment_pattern, - ACTIONS(1734), 2, + ACTIONS(1751), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(895), 4, + STATE(891), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1706), 5, + ACTIONS(1727), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [30830] = 13, + [30665] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(640), 1, - anon_sym_var, - ACTIONS(654), 1, - anon_sym_class, - ACTIONS(656), 1, - anon_sym_async, - ACTIONS(658), 1, - anon_sym_function, - ACTIONS(1627), 1, - anon_sym_LPAREN, - ACTIONS(1736), 1, - anon_sym_default, - STATE(289), 1, - sym_declaration, - STATE(750), 1, - sym_decorator, - STATE(922), 1, - aux_sym_export_statement_repeat1, - ACTIONS(642), 2, - anon_sym_let, - anon_sym_const, - STATE(275), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [30875] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, - sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1181), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [30912] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1720), 1, + ACTIONS(1737), 1, anon_sym_STAR, - ACTIONS(1724), 1, + ACTIONS(1741), 1, anon_sym_async, - ACTIONS(1726), 1, + ACTIONS(1743), 1, sym_number, - ACTIONS(1728), 1, + ACTIONS(1745), 1, anon_sym_static, - ACTIONS(1730), 1, + ACTIONS(1747), 1, anon_sym_get, - ACTIONS(1732), 1, + ACTIONS(1749), 1, anon_sym_set, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - ACTIONS(724), 2, + ACTIONS(712), 2, anon_sym_export, sym_identifier, - STATE(1166), 3, + STATE(1212), 3, sym_string, sym__property_name, sym_computed_property_name, - [30961] = 10, + [30714] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1725), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1729), 1, anon_sym_LBRACK, - ACTIONS(1738), 1, + ACTIONS(1753), 1, anon_sym_RPAREN, - STATE(991), 1, - sym_pattern, - STATE(1180), 1, - sym_assignment_pattern, - STATE(895), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1706), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [30999] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(584), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(586), 1, - anon_sym_RPAREN, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1708), 1, - anon_sym_LBRACK, - STATE(921), 1, + STATE(1027), 1, sym_pattern, - STATE(1030), 1, + STATE(1184), 1, sym_assignment_pattern, - STATE(895), 4, + STATE(891), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1706), 5, + ACTIONS(1727), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [31037] = 12, + [30752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(640), 1, - anon_sym_var, - ACTIONS(696), 1, - anon_sym_class, - ACTIONS(698), 1, - anon_sym_async, - ACTIONS(700), 1, - anon_sym_function, - ACTIONS(1736), 1, - anon_sym_default, - STATE(289), 1, - sym_declaration, - STATE(750), 1, - sym_decorator, - STATE(955), 1, - aux_sym_export_statement_repeat1, - ACTIONS(642), 2, - anon_sym_let, - anon_sym_const, - STATE(275), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [31079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1759), 1, anon_sym_DOT, - STATE(749), 1, + STATE(746), 1, sym_arguments, - ACTIONS(1742), 6, + ACTIONS(1757), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1740), 7, + ACTIONS(1755), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -50521,75 +50405,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31109] = 10, + [30782] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, + ACTIONS(624), 1, + anon_sym_RPAREN, + ACTIONS(1533), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1725), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1729), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, - anon_sym_RPAREN, - STATE(991), 1, + STATE(942), 1, sym_pattern, - STATE(1180), 1, + STATE(988), 1, sym_assignment_pattern, - STATE(895), 4, + STATE(891), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1706), 5, + ACTIONS(1727), 5, anon_sym_export, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [31147] = 12, + [30820] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(640), 1, - anon_sym_var, - ACTIONS(654), 1, - anon_sym_class, - ACTIONS(656), 1, + ACTIONS(619), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + sym_identifier, + ACTIONS(1729), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, + anon_sym_RPAREN, + STATE(1027), 1, + sym_pattern, + STATE(1184), 1, + sym_assignment_pattern, + STATE(891), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1727), 5, + anon_sym_export, anon_sym_async, - ACTIONS(658), 1, - anon_sym_function, - ACTIONS(1736), 1, - anon_sym_default, - STATE(289), 1, - sym_declaration, - STATE(750), 1, - sym_decorator, - STATE(922), 1, - aux_sym_export_statement_repeat1, - ACTIONS(642), 2, - anon_sym_let, - anon_sym_const, - STATE(275), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [31189] = 3, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [30858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1763), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1750), 9, + ACTIONS(1765), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50599,17 +50481,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31212] = 3, + [30881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(1767), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1769), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50619,37 +50501,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31235] = 3, + [30904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 7, + ACTIONS(1771), 6, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1773), 9, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1756), 8, + [30927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 6, anon_sym_export, - anon_sym_DOT, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31258] = 3, + ACTIONS(1765), 9, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + [30950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1762), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50659,44 +50561,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31281] = 10, + [30973] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1713), 1, anon_sym_STAR, - ACTIONS(1714), 1, + ACTIONS(1715), 1, sym_number, - ACTIONS(1716), 2, + ACTIONS(1717), 2, anon_sym_get, anon_sym_set, - STATE(1138), 3, + STATE(1153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [31318] = 3, + [31010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 6, + ACTIONS(1775), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1766), 9, + ACTIONS(1777), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50706,17 +50608,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31341] = 3, + [31033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(619), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + sym_identifier, + ACTIONS(1729), 1, + anon_sym_LBRACK, + STATE(1027), 1, + sym_pattern, + STATE(1184), 1, + sym_assignment_pattern, + STATE(891), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1727), 5, + anon_sym_export, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [31068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1769), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50726,17 +50654,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31364] = 3, + [31091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_LPAREN, + ACTIONS(1715), 1, + sym_number, + ACTIONS(1779), 1, + anon_sym_EQ_GT, + STATE(1153), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + [31126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 6, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1783), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50746,17 +50700,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31387] = 3, + [31149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50766,62 +50720,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31410] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(584), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1708), 1, - anon_sym_LBRACK, - STATE(991), 1, - sym_pattern, - STATE(1180), 1, - sym_assignment_pattern, - STATE(895), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1706), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [31445] = 2, + [31172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 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, - [31466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 6, + ACTIONS(1763), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1765), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50831,69 +50740,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31489] = 2, + [31195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 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, - [31510] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1627), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_STAR, - ACTIONS(1774), 1, - sym_number, - ACTIONS(1776), 1, - anon_sym_get, - ACTIONS(1778), 1, - anon_sym_set, - STATE(1223), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - [31549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1784), 1, + ACTIONS(1789), 1, anon_sym_AT, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - ACTIONS(1782), 5, + ACTIONS(1787), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1780), 7, + ACTIONS(1785), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -50901,17 +50763,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31578] = 3, + [31224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(1763), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1765), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50921,17 +50783,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31601] = 3, + [31247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1754), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50941,17 +50803,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31624] = 3, + [31270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 6, + ACTIONS(1792), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1789), 9, + ACTIONS(1794), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -50961,36 +50823,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31647] = 2, + [31293] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 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, - [31668] = 3, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_LPAREN, + ACTIONS(1796), 1, + anon_sym_STAR, + ACTIONS(1798), 1, + sym_number, + ACTIONS(1800), 1, + anon_sym_get, + ACTIONS(1802), 1, + anon_sym_set, + STATE(1174), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 4, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + [31332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 6, + ACTIONS(1763), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1789), 9, + ACTIONS(1765), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51000,17 +50871,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31691] = 3, + [31355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1789), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51020,17 +50891,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31714] = 3, + [31378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1795), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51040,17 +50911,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31737] = 3, + [31401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 6, + ACTIONS(1804), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1799), 9, + ACTIONS(1806), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51060,43 +50931,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31760] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1627), 1, - anon_sym_LPAREN, - ACTIONS(1714), 1, - sym_number, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - STATE(1138), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [31795] = 3, + [31424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1767), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1750), 9, + ACTIONS(1769), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51106,114 +50951,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31818] = 3, + [31447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1805), 9, + ACTIONS(1810), 7, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31841] = 12, + ACTIONS(1808), 8, + anon_sym_export, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [31470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1812), 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, + [31491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 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, + [31512] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1816), 1, anon_sym_STAR, - ACTIONS(1809), 1, + ACTIONS(1818), 1, anon_sym_async, - ACTIONS(1811), 1, + ACTIONS(1820), 1, sym_number, - ACTIONS(1813), 1, + ACTIONS(1822), 1, anon_sym_get, - ACTIONS(1815), 1, + ACTIONS(1824), 1, anon_sym_set, - ACTIONS(724), 3, + ACTIONS(712), 3, anon_sym_export, sym_identifier, anon_sym_static, - STATE(1148), 3, + STATE(1176), 3, sym_string, sym__property_name, sym_computed_property_name, - [31882] = 3, + [31553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1789), 9, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - [31905] = 11, + ACTIONS(1826), 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, + [31574] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1817), 1, + ACTIONS(1828), 1, anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1830), 1, sym_number, - ACTIONS(1821), 1, + ACTIONS(1832), 1, anon_sym_get, - ACTIONS(1823), 1, + ACTIONS(1834), 1, anon_sym_set, - STATE(1145), 3, + STATE(1116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 4, + ACTIONS(712), 4, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, - [31944] = 3, + [31613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 6, + ACTIONS(1836), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1789), 9, + ACTIONS(1838), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51223,17 +51105,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31967] = 3, + [31636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1771), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1750), 9, + ACTIONS(1773), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51243,367 +51125,411 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [31990] = 8, + [31659] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1825), 1, + ACTIONS(1840), 1, sym_number, - STATE(1219), 3, + STATE(1179), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32022] = 8, + [31691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(619), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + sym_identifier, + ACTIONS(1729), 1, + anon_sym_LBRACK, + STATE(1063), 1, + sym_pattern, + STATE(891), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1727), 5, + anon_sym_export, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [31723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1827), 1, + ACTIONS(1842), 1, sym_number, - STATE(1250), 3, + STATE(1119), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32054] = 8, + [31755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1708), 1, - anon_sym_LBRACK, - STATE(1142), 1, - sym_pattern, - STATE(895), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1706), 5, + ACTIONS(1848), 1, + anon_sym_SEMI, + ACTIONS(1844), 6, anon_sym_export, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32086] = 8, + ACTIONS(1846), 7, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + [31779] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1714), 1, + ACTIONS(1850), 1, sym_number, - STATE(1138), 3, + STATE(1114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32118] = 8, + [31811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1829), 1, + ACTIONS(1852), 1, sym_number, - STATE(1232), 3, + STATE(1115), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32150] = 8, + [31843] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1854), 1, sym_number, - STATE(1149), 3, + STATE(1206), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32182] = 8, + [31875] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1833), 1, + ACTIONS(1715), 1, sym_number, - STATE(1131), 3, + STATE(1153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32214] = 8, + [31907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, sym_number, - STATE(1129), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32246] = 8, + [31939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_number, - STATE(1221), 3, + STATE(1177), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32278] = 8, + [31971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1839), 1, + ACTIONS(1860), 1, sym_number, - STATE(1228), 3, + STATE(1192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32310] = 8, + [32003] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + ACTIONS(1862), 1, sym_number, - STATE(1150), 3, + STATE(1123), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32342] = 4, + [32035] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_SEMI, - ACTIONS(1843), 6, + ACTIONS(402), 1, + anon_sym_DQUOTE, + ACTIONS(404), 1, + anon_sym_SQUOTE, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1864), 1, + sym_number, + STATE(1117), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1845), 7, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + [32064] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, anon_sym_DQUOTE, + ACTIONS(404), 1, anon_sym_SQUOTE, + ACTIONS(1636), 1, + anon_sym_LBRACK, + ACTIONS(1866), 1, sym_number, - anon_sym_AT, - [32366] = 7, + STATE(1173), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(712), 6, + anon_sym_export, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [32093] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1827), 1, + ACTIONS(1715), 1, sym_number, - STATE(1250), 3, + STATE(1153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32395] = 7, + [32122] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1849), 1, + ACTIONS(1868), 1, sym_number, - STATE(1134), 3, + STATE(1121), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32424] = 7, + [32151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1851), 1, + ACTIONS(1862), 1, sym_number, - STATE(1144), 3, + STATE(1123), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32453] = 3, + [32180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 6, + ACTIONS(1870), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1855), 7, + ACTIONS(1872), 7, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -51611,17 +51537,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [32474] = 3, + [32201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 6, + ACTIONS(1876), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1857), 7, + ACTIONS(1874), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -51629,17 +51555,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32495] = 3, + [32222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 6, + ACTIONS(1880), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1861), 7, + ACTIONS(1878), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -51647,61 +51573,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32516] = 7, + [32243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - ACTIONS(1865), 1, + ACTIONS(1882), 1, sym_number, - STATE(1242), 3, + STATE(1183), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32545] = 7, + [32272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1867), 1, - sym_number, - STATE(1225), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [32574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1742), 6, + ACTIONS(1757), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1740), 7, + ACTIONS(1755), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -51709,281 +51613,259 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32595] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - sym_number, - STATE(1138), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(724), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [32624] = 7, + [32293] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(402), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(404), 1, anon_sym_SQUOTE, - ACTIONS(720), 1, + ACTIONS(708), 1, sym_number, - ACTIONS(1615), 1, + ACTIONS(1636), 1, anon_sym_LBRACK, - STATE(1181), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(724), 6, + ACTIONS(712), 6, anon_sym_export, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32653] = 11, + [32322] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1877), 1, + ACTIONS(1892), 1, anon_sym_SLASH, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - STATE(805), 1, + STATE(783), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32688] = 11, + [32357] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(1883), 1, + ACTIONS(1898), 1, anon_sym_SLASH, - STATE(784), 1, + STATE(798), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32723] = 11, + [32392] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(1885), 1, + ACTIONS(1900), 1, anon_sym_SLASH, - STATE(804), 1, + STATE(786), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32758] = 11, + [32427] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(1887), 1, + ACTIONS(1902), 1, anon_sym_SLASH, - STATE(796), 1, + STATE(777), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32793] = 7, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1891), 1, - anon_sym_LT, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, - sym_comment, - STATE(452), 1, - sym_jsx_closing_element, - STATE(765), 1, - sym_jsx_opening_element, - STATE(786), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [32819] = 10, + [32462] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1877), 1, - anon_sym_SLASH, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - STATE(803), 1, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(1900), 1, + anon_sym_SLASH, + STATE(801), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32851] = 10, + [32494] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1885), 1, + ACTIONS(1892), 1, anon_sym_SLASH, - STATE(806), 1, + ACTIONS(1894), 1, + sym_jsx_identifier, + STATE(782), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32883] = 7, - ACTIONS(1889), 1, + [32526] = 7, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, + ACTIONS(1906), 1, + anon_sym_LT, + ACTIONS(1908), 1, sym_jsx_text, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1897), 1, - anon_sym_LT, - STATE(580), 1, + STATE(480), 1, sym_jsx_closing_element, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(786), 5, + STATE(763), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [32909] = 10, + [32552] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(1885), 1, + ACTIONS(1900), 1, anon_sym_SLASH, - STATE(794), 1, + STATE(779), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [32941] = 7, - ACTIONS(1889), 1, + [32584] = 7, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(1912), 1, anon_sym_LT, - ACTIONS(1901), 1, + ACTIONS(1914), 1, sym_jsx_text, - STATE(765), 1, + STATE(617), 1, + sym_jsx_closing_element, + STATE(768), 1, sym_jsx_opening_element, - STATE(988), 1, + STATE(774), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [32610] = 7, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_LT, + ACTIONS(1918), 1, + sym_jsx_text, + STATE(768), 1, + sym_jsx_opening_element, + STATE(871), 1, sym_jsx_closing_element, - STATE(773), 5, + STATE(770), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [32967] = 7, + [32636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_LT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_DQUOTE, - ACTIONS(1907), 1, + ACTIONS(1924), 1, anon_sym_SQUOTE, - STATE(767), 1, + STATE(759), 1, sym_jsx_opening_element, STATE(897), 5, sym_jsx_element, @@ -51991,822 +51873,840 @@ static uint16_t ts_small_parse_table[] = { sym_jsx_expression, sym_jsx_self_closing_element, sym_string, - [32993] = 7, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, + [32662] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_LT, - ACTIONS(1911), 1, - sym_jsx_text, - STATE(765), 1, - sym_jsx_opening_element, - STATE(902), 1, - sym_jsx_closing_element, - STATE(770), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33019] = 7, - ACTIONS(1889), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, + ACTIONS(1920), 1, anon_sym_LT, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1913), 1, - sym_jsx_text, - STATE(455), 1, - sym_jsx_closing_element, - STATE(765), 1, + ACTIONS(1922), 1, + anon_sym_DQUOTE, + ACTIONS(1924), 1, + anon_sym_SQUOTE, + STATE(759), 1, sym_jsx_opening_element, - STATE(760), 5, + STATE(888), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33045] = 10, + sym_string, + [32688] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1883), 1, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(1898), 1, anon_sym_SLASH, - STATE(783), 1, + STATE(796), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33077] = 7, - ACTIONS(1889), 1, + [32720] = 7, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, + ACTIONS(1906), 1, + anon_sym_LT, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(1914), 1, sym_jsx_text, - ACTIONS(1895), 1, + STATE(464), 1, + sym_jsx_closing_element, + STATE(768), 1, + sym_jsx_opening_element, + STATE(774), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [32746] = 7, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(1914), 1, + sym_jsx_text, + ACTIONS(1926), 1, anon_sym_LT, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(869), 1, + STATE(960), 1, sym_jsx_closing_element, - STATE(786), 5, + STATE(774), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33103] = 10, + [32772] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1877), 1, - anon_sym_SLASH, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, - anon_sym_DOT, - STATE(807), 1, + ACTIONS(1902), 1, + anon_sym_SLASH, + STATE(778), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33135] = 7, - ACTIONS(1889), 1, + [32804] = 7, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(1912), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1928), 1, sym_jsx_text, - STATE(566), 1, + STATE(574), 1, sym_jsx_closing_element, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(763), 5, + STATE(758), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33161] = 7, - ACTIONS(1889), 1, + [32830] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + sym_identifier, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(1890), 1, + anon_sym_GT, + ACTIONS(1894), 1, + sym_jsx_identifier, + ACTIONS(1898), 1, + anon_sym_SLASH, + STATE(799), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(845), 1, + sym_jsx_namespace_name, + STATE(880), 2, + sym_jsx_expression, + sym_jsx_attribute, + [32862] = 7, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(1926), 1, anon_sym_LT, - STATE(765), 1, + ACTIONS(1930), 1, + sym_jsx_text, + STATE(768), 1, sym_jsx_opening_element, - STATE(983), 1, + STATE(959), 1, sym_jsx_closing_element, - STATE(786), 5, + STATE(764), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33187] = 7, + [32888] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_LBRACE, - ACTIONS(1903), 1, - anon_sym_LT, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1907), 1, - anon_sym_SQUOTE, - STATE(767), 1, - sym_jsx_opening_element, - STATE(898), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [33213] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1887), 1, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(1902), 1, anon_sym_SLASH, - STATE(779), 1, + STATE(776), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33245] = 10, + [32920] = 7, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(1914), 1, + sym_jsx_text, + ACTIONS(1916), 1, + anon_sym_LT, + STATE(768), 1, + sym_jsx_opening_element, + STATE(874), 1, + sym_jsx_closing_element, + STATE(774), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [32946] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1892), 1, + anon_sym_SLASH, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(1887), 1, - anon_sym_SLASH, - STATE(795), 1, + STATE(784), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33277] = 10, + [32978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(1883), 1, + ACTIONS(1900), 1, anon_sym_SLASH, - STATE(785), 1, + STATE(800), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33309] = 6, - ACTIONS(1889), 1, + [33007] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1932), 1, anon_sym_LT, - ACTIONS(1919), 1, + ACTIONS(1934), 1, sym_jsx_text, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(797), 5, + STATE(793), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33332] = 9, - ACTIONS(3), 1, + [33030] = 6, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1921), 1, - anon_sym_GT, - ACTIONS(1923), 1, - anon_sym_SLASH, - STATE(787), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, - sym_jsx_namespace_name, - STATE(900), 2, + ACTIONS(1939), 1, + anon_sym_LT, + ACTIONS(1942), 1, + sym_jsx_text, + STATE(768), 1, + sym_jsx_opening_element, + STATE(774), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [33361] = 6, - ACTIONS(1889), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [33053] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1925), 1, + ACTIONS(1945), 1, anon_sym_LT, - STATE(765), 1, + ACTIONS(1947), 1, + sym_jsx_text, + STATE(768), 1, sym_jsx_opening_element, - STATE(786), 5, + STATE(785), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33384] = 9, + [33076] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1894), 1, + sym_jsx_identifier, + ACTIONS(1949), 1, anon_sym_GT, - ACTIONS(1877), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1879), 1, - sym_jsx_identifier, - STATE(799), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33413] = 6, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1927), 1, - anon_sym_LT, - STATE(765), 1, - sym_jsx_opening_element, - STATE(786), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33436] = 9, + [33105] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1921), 1, + ACTIONS(1953), 1, anon_sym_GT, - ACTIONS(1929), 1, + ACTIONS(1955), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33465] = 9, + [33134] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1931), 1, + ACTIONS(1957), 1, anon_sym_GT, - ACTIONS(1933), 1, + ACTIONS(1959), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33494] = 9, + [33163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1935), 1, + ACTIONS(1957), 1, anon_sym_GT, - ACTIONS(1937), 1, + ACTIONS(1961), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33523] = 6, - ACTIONS(1895), 1, + [33192] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 1, + ACTIONS(1884), 1, + sym_identifier, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LT, - ACTIONS(1945), 1, - sym_jsx_text, - STATE(765), 1, - sym_jsx_opening_element, - STATE(786), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(1890), 1, + anon_sym_GT, + ACTIONS(1894), 1, + sym_jsx_identifier, + ACTIONS(1902), 1, + anon_sym_SLASH, + STATE(787), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(845), 1, + sym_jsx_namespace_name, + STATE(880), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33546] = 9, + sym_jsx_attribute, + [33221] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1951), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1956), 1, + ACTIONS(1892), 1, anon_sym_SLASH, - ACTIONS(1958), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - STATE(787), 1, + STATE(788), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33575] = 6, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, + [33250] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1961), 1, - anon_sym_LT, + ACTIONS(1884), 1, + sym_identifier, + ACTIONS(1886), 1, + anon_sym_LBRACE, + ACTIONS(1894), 1, + sym_jsx_identifier, + ACTIONS(1957), 1, + anon_sym_GT, ACTIONS(1963), 1, - sym_jsx_text, - STATE(765), 1, - sym_jsx_opening_element, - STATE(780), 5, - sym_jsx_element, - sym_jsx_fragment, + anon_sym_SLASH, + STATE(792), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(845), 1, + sym_jsx_namespace_name, + STATE(880), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33598] = 9, + sym_jsx_attribute, + [33279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, + ACTIONS(1953), 1, + anon_sym_GT, ACTIONS(1965), 1, + anon_sym_SLASH, + STATE(792), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(845), 1, + sym_jsx_namespace_name, + STATE(880), 2, + sym_jsx_expression, + sym_jsx_attribute, + [33308] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + sym_identifier, + ACTIONS(1886), 1, + anon_sym_LBRACE, + ACTIONS(1894), 1, + sym_jsx_identifier, + ACTIONS(1949), 1, anon_sym_GT, ACTIONS(1967), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33627] = 6, - ACTIONS(1889), 1, + [33337] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, + ACTIONS(1914), 1, + sym_jsx_text, ACTIONS(1969), 1, anon_sym_LT, - STATE(765), 1, - sym_jsx_opening_element, - STATE(786), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33650] = 6, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_LT, - ACTIONS(1973), 1, - sym_jsx_text, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(790), 5, + STATE(774), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33673] = 9, + [33360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1965), 1, + ACTIONS(1953), 1, anon_sym_GT, - ACTIONS(1975), 1, + ACTIONS(1971), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33702] = 9, + [33389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1965), 1, + ACTIONS(1973), 1, anon_sym_GT, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33731] = 9, + [33418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1935), 1, + ACTIONS(1973), 1, anon_sym_GT, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33760] = 9, - ACTIONS(3), 1, + [33447] = 6, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1914), 1, + sym_jsx_text, + ACTIONS(1979), 1, + anon_sym_LT, + STATE(768), 1, + sym_jsx_opening_element, + STATE(774), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [33470] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1935), 1, - anon_sym_GT, + ACTIONS(1910), 1, + sym_comment, ACTIONS(1981), 1, - anon_sym_SLASH, - STATE(787), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, - sym_jsx_namespace_name, - STATE(900), 2, + anon_sym_LT, + ACTIONS(1983), 1, + sym_jsx_text, + STATE(768), 1, + sym_jsx_opening_element, + STATE(789), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [33789] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [33493] = 6, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_LT, + ACTIONS(1987), 1, + sym_jsx_text, + STATE(768), 1, + sym_jsx_opening_element, + STATE(797), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [33516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1989), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1992), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1931), 1, + ACTIONS(1995), 1, anon_sym_GT, - ACTIONS(1983), 1, + ACTIONS(1997), 1, anon_sym_SLASH, - STATE(787), 1, + ACTIONS(1999), 1, + sym_jsx_identifier, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33818] = 6, - ACTIONS(1889), 1, + [33545] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, - sym_jsx_text, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1985), 1, + ACTIONS(1914), 1, + sym_jsx_text, + ACTIONS(2002), 1, anon_sym_LT, - STATE(765), 1, + STATE(768), 1, sym_jsx_opening_element, - STATE(786), 5, + STATE(774), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33841] = 9, + [33568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1890), 1, anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1887), 1, + ACTIONS(1898), 1, anon_sym_SLASH, - STATE(793), 1, + STATE(795), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33870] = 9, + [33597] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1965), 1, + ACTIONS(1973), 1, anon_sym_GT, - ACTIONS(1987), 1, + ACTIONS(2004), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33899] = 9, + [33626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - anon_sym_GT, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1883), 1, + ACTIONS(1949), 1, + anon_sym_GT, + ACTIONS(2006), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [33928] = 6, - ACTIONS(1889), 1, + [33655] = 6, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1989), 1, - anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(1914), 1, sym_jsx_text, - STATE(765), 1, + ACTIONS(2008), 1, + anon_sym_LT, + STATE(768), 1, sym_jsx_opening_element, - STATE(782), 5, + STATE(774), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33951] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - anon_sym_GT, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1885), 1, - anon_sym_SLASH, - STATE(792), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, - sym_jsx_namespace_name, - STATE(900), 2, - sym_jsx_expression, - sym_jsx_attribute, - [33980] = 9, + [33678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1921), 1, + ACTIONS(1953), 1, anon_sym_GT, - ACTIONS(1993), 1, + ACTIONS(2010), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [34009] = 9, + [33707] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1931), 1, + ACTIONS(1957), 1, anon_sym_GT, - ACTIONS(1995), 1, + ACTIONS(2012), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [34038] = 9, + [33736] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1931), 1, + ACTIONS(1973), 1, anon_sym_GT, - ACTIONS(1997), 1, + ACTIONS(2014), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [34067] = 9, + [33765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, + ACTIONS(1894), 1, sym_jsx_identifier, - ACTIONS(1921), 1, + ACTIONS(1949), 1, anon_sym_GT, - ACTIONS(1999), 1, + ACTIONS(2016), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(792), 1, aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, + STATE(845), 1, sym_jsx_namespace_name, - STATE(900), 2, + STATE(880), 2, sym_jsx_expression, sym_jsx_attribute, - [34096] = 9, + [33794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_LBRACE, - ACTIONS(1879), 1, - sym_jsx_identifier, - ACTIONS(1935), 1, - anon_sym_GT, - ACTIONS(2001), 1, - anon_sym_SLASH, - STATE(787), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(851), 1, - sym_jsx_namespace_name, - STATE(900), 2, - sym_jsx_expression, - sym_jsx_attribute, - [34125] = 6, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(2018), 1, + anon_sym_COMMA, + ACTIONS(2021), 1, + anon_sym_RBRACE, + ACTIONS(2024), 1, + anon_sym_as, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + STATE(1045), 1, + aux_sym_object_repeat1, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [33820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 1, + ACTIONS(2026), 1, sym_identifier, - ACTIONS(2005), 1, + ACTIONS(2028), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(2030), 1, anon_sym_LBRACK, - STATE(910), 1, + STATE(898), 1, sym_variable_declarator, - STATE(815), 3, + STATE(887), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [34146] = 2, + [33841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 7, + ACTIONS(2032), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52814,10 +52714,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34159] = 2, + [33854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 7, + ACTIONS(2034), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52825,10 +52725,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34172] = 2, + [33867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 7, + ACTIONS(1427), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52836,10 +52736,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34185] = 2, + [33880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 7, + ACTIONS(1407), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52847,150 +52747,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34198] = 7, + [33893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(1629), 1, - anon_sym_EQ, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [34221] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2003), 1, - sym_identifier, - ACTIONS(2005), 1, + ACTIONS(2028), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(2030), 1, anon_sym_LBRACK, - STATE(912), 1, + ACTIONS(2036), 1, + sym_identifier, + STATE(902), 1, sym_variable_declarator, - STATE(815), 3, + STATE(820), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [34242] = 5, + [33914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_EQ, - STATE(1007), 1, - sym__initializer, - ACTIONS(2015), 2, + ACTIONS(2038), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - ACTIONS(2013), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [34261] = 7, + anon_sym_EQ, + anon_sym_RBRACK, + [33927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(122), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1631), 1, - anon_sym_RBRACE, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1045), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - [34284] = 7, + [33950] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1704), 1, anon_sym_RBRACE, - STATE(976), 1, - aux_sym_object_repeat1, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1627), 2, + STATE(1045), 1, + aux_sym_object_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - [34307] = 7, + [33973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(674), 1, - anon_sym_RBRACE, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + ACTIONS(1652), 1, + anon_sym_RBRACE, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - [34330] = 7, + [33996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(678), 1, + ACTIONS(101), 1, anon_sym_RBRACE, - ACTIONS(1629), 1, + ACTIONS(130), 1, + anon_sym_COMMA, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - [34353] = 7, + [34019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(130), 1, anon_sym_COMMA, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1689), 1, + ACTIONS(1670), 1, anon_sym_RBRACE, - STATE(978), 1, - aux_sym_object_pattern_repeat1, - STATE(1058), 1, + STATE(1034), 1, aux_sym_object_repeat1, - ACTIONS(1627), 2, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - [34376] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - sym_identifier, - STATE(910), 1, - sym_variable_declarator, - STATE(901), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34397] = 2, + [34042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 7, + ACTIONS(2040), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52998,10 +52864,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34410] = 2, + [34055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(2046), 1, + anon_sym_EQ, + ACTIONS(2042), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2044), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [34074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 7, + ACTIONS(2048), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -53009,40 +52889,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34423] = 6, + [34087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2026), 1, sym_identifier, - STATE(973), 1, - sym_variable_declarator, - STATE(901), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2005), 1, + ACTIONS(2028), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(2030), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, - sym_identifier, - STATE(912), 1, + STATE(902), 1, sym_variable_declarator, - STATE(901), 3, + STATE(887), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [34465] = 2, + [34108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 7, + ACTIONS(1416), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -53050,5376 +52915,5070 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [34478] = 2, + [34121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2054), 1, + anon_sym_EQ, + STATE(995), 1, + sym__initializer, + ACTIONS(2052), 2, anon_sym_in, anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [34491] = 5, + ACTIONS(2050), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [34140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(2031), 1, - anon_sym_EQ, - ACTIONS(2027), 2, - anon_sym_SLASH, + ACTIONS(2026), 1, sym_identifier, - ACTIONS(2029), 3, + ACTIONS(2028), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [34510] = 7, + ACTIONS(2030), 1, + anon_sym_LBRACK, + STATE(1017), 1, + sym_variable_declarator, + STATE(887), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2028), 1, + anon_sym_LBRACE, + ACTIONS(2030), 1, + anon_sym_LBRACK, + ACTIONS(2036), 1, sym_identifier, - ACTIONS(2035), 1, - anon_sym_GT, - ACTIONS(2037), 1, - anon_sym_SLASH, - ACTIONS(2039), 1, - sym_jsx_identifier, - STATE(777), 1, - sym_nested_identifier, - STATE(800), 1, - sym_jsx_namespace_name, - [34532] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 1, - anon_sym_BQUOTE, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2041), 2, - sym__template_chars, - sym_escape_sequence, - STATE(863), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [34550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2049), 1, - anon_sym_BQUOTE, - ACTIONS(2047), 2, - sym__template_chars, - sym_escape_sequence, - STATE(854), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [34568] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_EQ, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1167), 1, - sym_formal_parameters, - STATE(1198), 1, - sym__initializer, - ACTIONS(2053), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [34588] = 2, + STATE(898), 1, + sym_variable_declarator, + STATE(820), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 6, - sym__automatic_semicolon, + ACTIONS(120), 1, + anon_sym_RBRACE, + ACTIONS(130), 1, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1650), 1, anon_sym_EQ, - [34600] = 7, + STATE(1034), 1, + aux_sym_object_repeat1, + STATE(1038), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [34205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, - sym_jsx_identifier, - ACTIONS(2055), 1, + ACTIONS(2060), 1, anon_sym_SLASH, - STATE(777), 1, + ACTIONS(2062), 1, + sym_jsx_identifier, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34622] = 7, + [34227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2057), 1, + ACTIONS(2064), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34644] = 7, + [34249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2059), 1, + ACTIONS(2066), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [34678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [34690] = 5, + [34271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2068), 1, anon_sym_default, - ACTIONS(2064), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - ACTIONS(2066), 1, + ACTIONS(2072), 1, anon_sym_case, - STATE(839), 3, + STATE(832), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [34708] = 7, + [34289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1729), 1, + anon_sym_LBRACK, + ACTIONS(2074), 1, + sym_identifier, + STATE(1283), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34307] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2069), 1, + ACTIONS(2076), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [34742] = 7, + [34329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2071), 1, + ACTIONS(2078), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34764] = 2, + [34351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [34776] = 5, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1729), 1, + anon_sym_LBRACK, + ACTIONS(2080), 1, + sym_identifier, + STATE(1081), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2075), 1, + ACTIONS(2068), 1, + anon_sym_default, + ACTIONS(2072), 1, + anon_sym_case, + ACTIONS(2082), 1, + anon_sym_RBRACE, + STATE(844), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [34387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2086), 1, anon_sym_BQUOTE, - ACTIONS(2073), 2, + ACTIONS(2088), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2084), 2, sym__template_chars, sym_escape_sequence, - STATE(831), 2, + STATE(835), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [34794] = 2, + [34405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 6, + ACTIONS(2040), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [34806] = 5, + [34417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1708), 1, - anon_sym_LBRACK, - ACTIONS(2077), 1, - sym_identifier, - STATE(865), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34824] = 7, + ACTIONS(2088), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2092), 1, + anon_sym_BQUOTE, + ACTIONS(2090), 2, + sym__template_chars, + sym_escape_sequence, + STATE(836), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [34435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + anon_sym_BQUOTE, + ACTIONS(2099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2094), 2, + sym__template_chars, + sym_escape_sequence, + STATE(836), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [34453] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2079), 1, + ACTIONS(2102), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34846] = 7, + [34475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2081), 1, + ACTIONS(2104), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [34868] = 6, + [34497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1729), 1, + anon_sym_LBRACK, + ACTIONS(2106), 1, + sym_identifier, + STATE(862), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1416), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [34527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2054), 1, anon_sym_EQ, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1137), 1, - sym_formal_parameters, - STATE(1163), 1, + STATE(1159), 1, sym__initializer, - ACTIONS(2083), 2, + STATE(1209), 1, + sym_formal_parameters, + ACTIONS(2110), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + sym_identifier, + ACTIONS(2058), 1, + anon_sym_GT, + ACTIONS(2062), 1, + sym_jsx_identifier, + ACTIONS(2112), 1, + anon_sym_SLASH, + STATE(769), 1, + sym_nested_identifier, + STATE(780), 1, + sym_jsx_namespace_name, + [34569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2032), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [34888] = 5, + anon_sym_EQ, + [34581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(2114), 1, anon_sym_default, - ACTIONS(2087), 1, + ACTIONS(2117), 1, anon_sym_RBRACE, - ACTIONS(2089), 1, + ACTIONS(2119), 1, anon_sym_case, - STATE(839), 3, + STATE(844), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [34906] = 4, + [34599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, + ACTIONS(2126), 1, anon_sym_EQ, - ACTIONS(2091), 2, + ACTIONS(2122), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2093), 3, + ACTIONS(2124), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [34922] = 2, + [34615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 6, + ACTIONS(2034), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [34934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1708), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_identifier, - STATE(1192), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34952] = 5, + [34627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 1, - anon_sym_BQUOTE, - ACTIONS(2104), 1, + ACTIONS(2088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2099), 2, + ACTIONS(2130), 1, + anon_sym_BQUOTE, + ACTIONS(2128), 2, sym__template_chars, sym_escape_sequence, - STATE(854), 2, + STATE(853), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [34970] = 3, + [34645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2109), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [34984] = 7, + ACTIONS(1407), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [34657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [34669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2048), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [34681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2111), 1, + ACTIONS(2132), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [35006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2113), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2115), 4, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - [35020] = 7, + [34703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2117), 1, + ACTIONS(2134), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [35042] = 2, + [34725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2088), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2136), 1, + anon_sym_BQUOTE, + ACTIONS(2090), 2, + sym__template_chars, + sym_escape_sequence, + STATE(836), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [34743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 6, + ACTIONS(1427), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [35054] = 7, + [34755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [35076] = 7, + [34777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_GT, - ACTIONS(2039), 1, + ACTIONS(2062), 1, sym_jsx_identifier, - ACTIONS(2121), 1, + ACTIONS(2140), 1, anon_sym_SLASH, - STATE(777), 1, + STATE(769), 1, sym_nested_identifier, - STATE(800), 1, + STATE(780), 1, sym_jsx_namespace_name, - [35098] = 5, + [34799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_EQ, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1181), 1, + sym_formal_parameters, + STATE(1201), 1, + sym__initializer, + ACTIONS(2142), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 1, + ACTIONS(2144), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2146), 4, anon_sym_LBRACE, - ACTIONS(1708), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + [34833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 2, + anon_sym_SLASH, sym_identifier, - STATE(1308), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [35116] = 5, + ACTIONS(2150), 4, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + [34847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2125), 1, - anon_sym_BQUOTE, - ACTIONS(2047), 2, - sym__template_chars, - sym_escape_sequence, - STATE(854), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [35134] = 5, + ACTIONS(1342), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1344), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [34860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, - anon_sym_default, - ACTIONS(2089), 1, - anon_sym_case, - ACTIONS(2127), 1, - anon_sym_RBRACE, - STATE(850), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [35152] = 2, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2152), 1, + anon_sym_export, + ACTIONS(2154), 1, + anon_sym_class, + STATE(709), 1, + aux_sym_export_statement_repeat1, + STATE(745), 1, + sym_decorator, + [34879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 5, + ACTIONS(2156), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_RBRACK, - [35163] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, - sym_identifier, - ACTIONS(2133), 1, - anon_sym_LBRACE, - ACTIONS(2135), 1, - anon_sym_extends, - STATE(420), 1, - sym_class_body, - STATE(1130), 1, - sym_class_heritage, - [35182] = 6, + [34890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_extends, - ACTIONS(2137), 1, + ACTIONS(2056), 1, sym_identifier, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_class_body, - STATE(1079), 1, - sym_class_heritage, - [35201] = 4, + ACTIONS(2058), 1, + anon_sym_GT, + ACTIONS(2062), 1, + sym_jsx_identifier, + STATE(769), 1, + sym_nested_identifier, + STATE(780), 1, + sym_jsx_namespace_name, + [34909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(1627), 2, + ACTIONS(1648), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1693), 2, + ACTIONS(1710), 2, anon_sym_COMMA, anon_sym_RBRACE, - [35216] = 3, + [34924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1284), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [35229] = 3, + ACTIONS(1618), 1, + anon_sym_COMMA, + ACTIONS(1648), 1, + anon_sym_COLON, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(2158), 1, + anon_sym_RBRACE, + STATE(1035), 1, + aux_sym_object_pattern_repeat1, + [34943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, + ACTIONS(1249), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1314), 3, + ACTIONS(1251), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35242] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2141), 1, - sym_identifier, - ACTIONS(2143), 1, - anon_sym_GT, - ACTIONS(2145), 1, - sym_jsx_identifier, - STATE(776), 1, - sym_nested_identifier, - STATE(798), 1, - sym_jsx_namespace_name, - [35261] = 3, + [34956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 2, + ACTIONS(2160), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1226), 3, + ACTIONS(2162), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35274] = 6, + [34969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_COLON, - ACTIONS(1629), 1, + ACTIONS(1650), 1, anon_sym_EQ, - ACTIONS(2147), 1, + ACTIONS(2164), 1, anon_sym_RBRACE, - STATE(978), 1, + STATE(1038), 1, aux_sym_object_pattern_repeat1, - [35293] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2033), 1, - sym_identifier, - ACTIONS(2035), 1, - anon_sym_GT, - ACTIONS(2039), 1, - sym_jsx_identifier, - STATE(777), 1, - sym_nested_identifier, - STATE(800), 1, - sym_jsx_namespace_name, - [35312] = 3, + [34988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 2, + ACTIONS(1263), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1363), 3, + ACTIONS(1265), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35325] = 6, + [35001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2166), 1, sym_identifier, - ACTIONS(2151), 1, + ACTIONS(2168), 1, anon_sym_GT, - ACTIONS(2153), 1, + ACTIONS(2170), 1, sym_jsx_identifier, STATE(771), 1, sym_nested_identifier, STATE(781), 1, sym_jsx_namespace_name, - [35344] = 3, + [35020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 2, + ACTIONS(1346), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1367), 3, + ACTIONS(1348), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35357] = 3, + [35033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2172), 1, + sym_identifier, + ACTIONS(2174), 1, + anon_sym_LBRACE, + ACTIONS(2176), 1, + anon_sym_extends, + STATE(461), 1, + sym_class_body, + STATE(1099), 1, + sym_class_heritage, + [35052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(765), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [35063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 2, + ACTIONS(1301), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1367), 3, + ACTIONS(1303), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35370] = 3, + [35076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 2, + ACTIONS(1279), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1367), 3, + ACTIONS(1281), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35383] = 6, + [35089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_extends, - ACTIONS(2139), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(2176), 1, + anon_sym_extends, + ACTIONS(2178), 1, sym_identifier, - STATE(613), 1, + STATE(467), 1, sym_class_body, - STATE(1240), 1, + STATE(1189), 1, sym_class_heritage, - [35402] = 3, + [35108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 2, - anon_sym_SLASH, + ACTIONS(2176), 1, + anon_sym_extends, + ACTIONS(2180), 1, sym_identifier, - ACTIONS(1367), 3, + ACTIONS(2182), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [35415] = 6, + STATE(605), 1, + sym_class_body, + STATE(1110), 1, + sym_class_heritage, + [35127] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2157), 1, + ACTIONS(2184), 1, anon_sym_export, - ACTIONS(2159), 1, + ACTIONS(2186), 1, anon_sym_class, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - [35434] = 3, + [35146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1214), 3, + ACTIONS(2176), 1, + anon_sym_extends, + ACTIONS(2182), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [35447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2161), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(2163), 1, - anon_sym_GT, - ACTIONS(2165), 1, - sym_jsx_identifier, - STATE(764), 1, - sym_nested_identifier, - STATE(802), 1, - sym_jsx_namespace_name, - [35466] = 3, + STATE(605), 1, + sym_class_body, + STATE(1110), 1, + sym_class_heritage, + [35165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 2, + ACTIONS(2190), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1377), 3, + ACTIONS(2192), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35479] = 3, + [35178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 2, + ACTIONS(1333), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1381), 3, + ACTIONS(1335), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35492] = 6, + [35191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2176), 1, anon_sym_extends, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2167), 1, + ACTIONS(2194), 1, sym_identifier, - STATE(594), 1, + STATE(605), 1, sym_class_body, - STATE(1079), 1, + STATE(1110), 1, sym_class_heritage, - [35511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 1, - anon_sym_COMMA, - ACTIONS(1627), 1, - anon_sym_COLON, - ACTIONS(1629), 1, - anon_sym_EQ, - ACTIONS(2169), 1, - anon_sym_RBRACE, - STATE(1059), 1, - aux_sym_object_pattern_repeat1, - [35530] = 3, + [35210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 2, - anon_sym_SLASH, + ACTIONS(2196), 1, sym_identifier, - ACTIONS(2173), 3, - anon_sym_LBRACE, + ACTIONS(2198), 1, anon_sym_GT, + ACTIONS(2200), 1, sym_jsx_identifier, - [35543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [35554] = 6, + STATE(762), 1, + sym_nested_identifier, + STATE(794), 1, + sym_jsx_namespace_name, + [35229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2175), 1, - anon_sym_export, - ACTIONS(2177), 1, - anon_sym_class, - STATE(716), 1, - aux_sym_export_statement_repeat1, - STATE(750), 1, - sym_decorator, - [35573] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - anon_sym_LBRACE, - ACTIONS(2135), 1, + ACTIONS(2176), 1, anon_sym_extends, - ACTIONS(2179), 1, + ACTIONS(2182), 1, + anon_sym_LBRACE, + ACTIONS(2202), 1, sym_identifier, - STATE(458), 1, + STATE(528), 1, sym_class_body, - STATE(1089), 1, + STATE(1093), 1, sym_class_heritage, - [35592] = 6, + [35248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2204), 1, + sym_identifier, + ACTIONS(2206), 1, + anon_sym_GT, + ACTIONS(2208), 1, + sym_jsx_identifier, + STATE(754), 1, + sym_nested_identifier, + STATE(772), 1, + sym_jsx_namespace_name, + [35267] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2176), 1, anon_sym_extends, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2181), 1, + ACTIONS(2210), 1, sym_identifier, - STATE(613), 1, + STATE(528), 1, sym_class_body, - STATE(1240), 1, + STATE(1093), 1, sym_class_heritage, - [35611] = 6, + [35286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_extends, - ACTIONS(2139), 1, + ACTIONS(2054), 1, + anon_sym_EQ, + STATE(995), 1, + sym__initializer, + ACTIONS(2050), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [35301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2212), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2214), 3, anon_sym_LBRACE, - ACTIONS(2183), 1, + anon_sym_GT, + sym_jsx_identifier, + [35314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 2, + anon_sym_SLASH, sym_identifier, - STATE(613), 1, - sym_class_body, - STATE(1240), 1, - sym_class_heritage, - [35630] = 2, + ACTIONS(1344), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [35327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 5, + ACTIONS(1342), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1344), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [35340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1064), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_RBRACK, - [35641] = 3, + [35351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 2, + ACTIONS(1342), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2187), 3, + ACTIONS(1344), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35654] = 3, + [35364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 2, + ACTIONS(2216), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2191), 3, + ACTIONS(2218), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35667] = 3, + [35377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 2, + ACTIONS(1382), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2195), 3, + ACTIONS(1384), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35680] = 6, + [35390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2176), 1, anon_sym_extends, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(2220), 1, sym_identifier, - STATE(594), 1, + STATE(528), 1, sym_class_body, - STATE(1079), 1, + STATE(1093), 1, sym_class_heritage, - [35699] = 3, + [35409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 2, + ACTIONS(1350), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2201), 3, + ACTIONS(1352), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_EQ, - STATE(1007), 1, - sym__initializer, - ACTIONS(2013), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [35727] = 3, + [35422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 2, + ACTIONS(2222), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1294), 3, + ACTIONS(2224), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [35740] = 5, + [35435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(225), 1, - sym_class_body, - STATE(1244), 1, - sym_class_heritage, - [35756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(54), 1, - sym_class_body, - STATE(1105), 1, - sym_class_heritage, - [35772] = 4, - ACTIONS(1895), 1, + ACTIONS(2226), 1, + anon_sym_COMMA, + STATE(911), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2228), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [35449] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2207), 1, + ACTIONS(2230), 1, anon_sym_DQUOTE, - STATE(907), 1, + STATE(899), 1, aux_sym_string_repeat1, - ACTIONS(2209), 2, + ACTIONS(2232), 2, aux_sym_string_token1, sym_escape_sequence, - [35786] = 4, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_SQUOTE, - STATE(906), 1, - aux_sym_string_repeat2, - ACTIONS(2213), 2, - aux_sym_string_token2, - sym_escape_sequence, - [35800] = 4, - ACTIONS(1895), 1, + [35463] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2235), 1, anon_sym_DQUOTE, - STATE(907), 1, + STATE(899), 1, aux_sym_string_repeat1, - ACTIONS(2218), 2, + ACTIONS(2237), 2, aux_sym_string_token1, sym_escape_sequence, - [35814] = 5, + [35477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2223), 1, - anon_sym_COMMA, - ACTIONS(2225), 1, - anon_sym_RBRACE, - STATE(999), 1, - sym__import_export_specifier, - [35830] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(509), 1, - sym_class_body, - STATE(1082), 1, - sym_class_heritage, - [35846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2227), 1, - anon_sym_COMMA, - STATE(937), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2229), 2, + ACTIONS(1495), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [35860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 1, - sym_identifier, - ACTIONS(2233), 1, - sym_jsx_identifier, - STATE(1109), 1, - sym_nested_identifier, - STATE(1337), 1, - sym_jsx_namespace_name, - [35876] = 4, + anon_sym_EQ, + [35487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, + ACTIONS(2226), 1, anon_sym_COMMA, - STATE(936), 1, + STATE(909), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2235), 2, + ACTIONS(2239), 2, sym__automatic_semicolon, anon_sym_SEMI, - [35890] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, - anon_sym_STAR, - STATE(1113), 1, - sym_formal_parameters, - [35906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - anon_sym_COMMA, - ACTIONS(2241), 1, - anon_sym_EQ, - ACTIONS(2243), 1, - anon_sym_RBRACK, - STATE(1072), 1, - aux_sym_array_pattern_repeat1, - [35922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_COMMA, - STATE(915), 1, - aux_sym_array_repeat1, - ACTIONS(1395), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [35936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2250), 1, - anon_sym_STAR, - STATE(1124), 1, - sym_formal_parameters, - [35952] = 4, + [35501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON, - ACTIONS(1629), 1, - anon_sym_EQ, - ACTIONS(2252), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(620), 1, + STATE(561), 1, sym_class_body, - STATE(1093), 1, + STATE(1084), 1, sym_class_heritage, - [35982] = 3, - ACTIONS(3), 1, + [35517] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2254), 1, - anon_sym_EQ, - ACTIONS(1059), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [35994] = 5, + ACTIONS(2243), 1, + anon_sym_SQUOTE, + STATE(920), 1, + aux_sym_string_repeat2, + ACTIONS(2245), 2, + aux_sym_string_token2, + sym_escape_sequence, + [35531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(577), 1, + STATE(506), 1, sym_class_body, - STATE(1116), 1, + STATE(1080), 1, sym_class_heritage, - [36010] = 5, - ACTIONS(3), 1, + [35547] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_COMMA, - ACTIONS(2259), 1, - anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_formal_parameters_repeat1, - [36026] = 5, + ACTIONS(2247), 1, + anon_sym_SQUOTE, + STATE(906), 1, + aux_sym_string_repeat2, + ACTIONS(2249), 2, + aux_sym_string_token2, + sym_escape_sequence, + [35561] = 4, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2235), 1, + anon_sym_SQUOTE, + STATE(906), 1, + aux_sym_string_repeat2, + ACTIONS(2252), 2, + aux_sym_string_token2, + sym_escape_sequence, + [35575] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2261), 1, + ACTIONS(2254), 1, anon_sym_class, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - [36042] = 2, + [35591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 4, + ACTIONS(2226), 1, + anon_sym_COMMA, + STATE(929), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2256), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [36052] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2263), 1, - anon_sym_class, - STATE(716), 1, - aux_sym_export_statement_repeat1, - STATE(750), 1, - sym_decorator, - [36068] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_AT, - ACTIONS(2265), 1, - anon_sym_class, - STATE(716), 1, - aux_sym_export_statement_repeat1, - STATE(750), 1, - sym_decorator, - [36084] = 5, + [35605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2267), 1, + ACTIONS(2258), 1, sym_identifier, - ACTIONS(2269), 1, - anon_sym_STAR, - STATE(1222), 1, - sym_formal_parameters, - [36100] = 4, + ACTIONS(2260), 1, + sym_jsx_identifier, + STATE(1193), 1, + sym_nested_identifier, + STATE(1223), 1, + sym_jsx_namespace_name, + [35621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_from, - STATE(1193), 1, - sym__from_clause, - ACTIONS(2273), 2, + ACTIONS(2226), 1, + anon_sym_COMMA, + STATE(929), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2262), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36114] = 3, + [35635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [36126] = 5, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, + sym_jsx_identifier, + STATE(1171), 1, + sym_nested_identifier, + STATE(1244), 1, + sym_jsx_namespace_name, + [35651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(225), 1, - sym_class_body, - STATE(1112), 1, - sym_class_heritage, - [36142] = 5, - ACTIONS(3), 1, + ACTIONS(2268), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [35661] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(576), 1, - anon_sym_COMMA, - ACTIONS(2241), 1, - anon_sym_EQ, - ACTIONS(2275), 1, - anon_sym_RBRACK, - STATE(1029), 1, - aux_sym_array_pattern_repeat1, - [36158] = 5, + ACTIONS(2270), 1, + anon_sym_DQUOTE, + STATE(899), 1, + aux_sym_string_repeat1, + ACTIONS(2237), 2, + aux_sym_string_token1, + sym_escape_sequence, + [35675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2279), 1, + ACTIONS(2274), 1, sym_jsx_identifier, - STATE(1207), 1, + STATE(1137), 1, sym_nested_identifier, - STATE(1278), 1, + STATE(1270), 1, sym_jsx_namespace_name, - [36174] = 5, + [35691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 1, + sym_identifier, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2280), 1, + anon_sym_RBRACE, + STATE(1015), 1, + sym__import_export_specifier, + [35707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2281), 1, + ACTIONS(2282), 1, sym_identifier, - ACTIONS(2283), 1, + ACTIONS(2284), 1, anon_sym_STAR, - STATE(1083), 1, + STATE(1194), 1, sym_formal_parameters, - [36190] = 5, + [35723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2154), 1, + anon_sym_class, + STATE(709), 1, + aux_sym_export_statement_repeat1, + STATE(745), 1, + sym_decorator, + [35739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(485), 1, + STATE(62), 1, sym_class_body, - STATE(1095), 1, + STATE(1062), 1, sym_class_heritage, - [36206] = 4, - ACTIONS(1895), 1, + [35755] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2207), 1, + ACTIONS(2270), 1, anon_sym_SQUOTE, STATE(906), 1, aux_sym_string_repeat2, - ACTIONS(2285), 2, + ACTIONS(2252), 2, aux_sym_string_token2, sym_escape_sequence, - [36220] = 5, + [35769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2287), 1, + ACTIONS(2286), 1, sym_identifier, - ACTIONS(2289), 1, + ACTIONS(2288), 1, anon_sym_STAR, - STATE(1124), 1, + STATE(1089), 1, sym_formal_parameters, - [36236] = 4, + [35785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2291), 2, + ACTIONS(2290), 1, + anon_sym_from, + STATE(1134), 1, + sym__from_clause, + ACTIONS(2292), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36250] = 4, + [35799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2293), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36264] = 5, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2186), 1, + anon_sym_class, + STATE(709), 1, + aux_sym_export_statement_repeat1, + STATE(745), 1, + sym_decorator, + [35815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2295), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2297), 1, - anon_sym_RBRACE, - STATE(986), 1, - sym__import_export_specifier, - [36280] = 5, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(2296), 1, + anon_sym_RBRACK, + STATE(1043), 1, + aux_sym_array_pattern_repeat1, + [35831] = 4, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_DQUOTE, + STATE(930), 1, + aux_sym_string_repeat1, + ACTIONS(2300), 2, + aux_sym_string_token1, + sym_escape_sequence, + [35845] = 4, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_SQUOTE, + STATE(931), 1, + aux_sym_string_repeat2, + ACTIONS(2302), 2, + aux_sym_string_token2, + sym_escape_sequence, + [35859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(514), 1, - sym_class_body, - STATE(1074), 1, - sym_class_heritage, - [36296] = 4, + ACTIONS(2304), 1, + anon_sym_COMMA, + STATE(927), 1, + aux_sym_array_repeat1, + ACTIONS(1396), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [35873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_LBRACE, - ACTIONS(2299), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2307), 1, + sym_identifier, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1316), 2, - sym_namespace_import, - sym_named_imports, - [36310] = 4, + STATE(1103), 1, + sym_formal_parameters, + [35889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2311), 1, anon_sym_COMMA, - STATE(941), 1, + STATE(929), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2304), 2, + ACTIONS(2314), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36324] = 4, - ACTIONS(1895), 1, + [35903] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2306), 1, + ACTIONS(2316), 1, anon_sym_DQUOTE, - STATE(907), 1, + STATE(899), 1, aux_sym_string_repeat1, - ACTIONS(2209), 2, + ACTIONS(2237), 2, aux_sym_string_token1, sym_escape_sequence, - [36338] = 4, - ACTIONS(1895), 1, + [35917] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2306), 1, + ACTIONS(2316), 1, anon_sym_SQUOTE, STATE(906), 1, aux_sym_string_repeat2, - ACTIONS(2285), 2, + ACTIONS(2252), 2, aux_sym_string_token2, sym_escape_sequence, - [36352] = 5, + [35931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_COLON, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(2318), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [35945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 1, + ACTIONS(611), 1, + anon_sym_COMMA, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(2320), 1, + anon_sym_RBRACK, + STATE(979), 1, + aux_sym_array_pattern_repeat1, + [35961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2322), 1, sym_identifier, - ACTIONS(2310), 1, + ACTIONS(2324), 1, anon_sym_LBRACK, - STATE(588), 1, + STATE(465), 1, sym_arguments, - [36368] = 4, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2312), 1, - anon_sym_SQUOTE, - STATE(943), 1, - aux_sym_string_repeat2, - ACTIONS(2314), 2, - aux_sym_string_token2, - sym_escape_sequence, - [36382] = 4, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2316), 1, - anon_sym_SQUOTE, - STATE(934), 1, - aux_sym_string_repeat2, - ACTIONS(2318), 2, - aux_sym_string_token2, - sym_escape_sequence, - [36396] = 4, - ACTIONS(1895), 1, + [35977] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 1, - anon_sym_DQUOTE, - STATE(905), 1, - aux_sym_string_repeat1, - ACTIONS(2320), 2, - aux_sym_string_token1, - sym_escape_sequence, - [36410] = 4, - ACTIONS(1895), 1, + ACTIONS(1648), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [35989] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_DQUOTE, - STATE(963), 1, - aux_sym_string_repeat1, - ACTIONS(2324), 2, - aux_sym_string_token1, - sym_escape_sequence, - [36424] = 4, - ACTIONS(1895), 1, + ACTIONS(2326), 1, + sym_identifier, + ACTIONS(2328), 1, + sym_jsx_identifier, + STATE(1078), 1, + sym_nested_identifier, + STATE(1302), 1, + sym_jsx_namespace_name, + [36005] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_SQUOTE, - STATE(959), 1, - aux_sym_string_repeat2, - ACTIONS(2326), 2, - aux_sym_string_token2, - sym_escape_sequence, - [36438] = 4, - ACTIONS(1895), 1, + ACTIONS(2182), 1, + anon_sym_LBRACE, + ACTIONS(2241), 1, + anon_sym_extends, + STATE(614), 1, + sym_class_body, + STATE(1064), 1, + sym_class_heritage, + [36021] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, - anon_sym_DQUOTE, - STATE(942), 1, - aux_sym_string_repeat1, - ACTIONS(2328), 2, - aux_sym_string_token1, - sym_escape_sequence, - [36452] = 2, + ACTIONS(1159), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [36031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [36462] = 5, + ACTIONS(1082), 1, + anon_sym_LBRACE, + ACTIONS(2330), 1, + anon_sym_STAR, + STATE(1226), 2, + sym_namespace_import, + sym_named_imports, + [36045] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2332), 1, + anon_sym_EQ, + ACTIONS(1064), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [36057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1215), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, sym_identifier, - ACTIONS(2334), 1, - sym_jsx_identifier, - STATE(1231), 1, - sym_nested_identifier, - STATE(1259), 1, - sym_jsx_namespace_name, - [36478] = 5, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(569), 1, + sym_arguments, + [36073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(2339), 1, + anon_sym_COMMA, + ACTIONS(2341), 1, + anon_sym_RPAREN, + STATE(968), 1, + aux_sym_formal_parameters_repeat1, + [36089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2336), 1, + ACTIONS(2343), 1, sym_identifier, - ACTIONS(2338), 1, + ACTIONS(2345), 1, anon_sym_STAR, - STATE(1222), 1, + STATE(1103), 1, sym_formal_parameters, - [36494] = 5, + [36105] = 4, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_DQUOTE, + STATE(914), 1, + aux_sym_string_repeat1, + ACTIONS(2347), 2, + aux_sym_string_token1, + sym_escape_sequence, + [36119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2340), 1, + ACTIONS(2349), 1, sym_identifier, - ACTIONS(2342), 1, + ACTIONS(2351), 1, anon_sym_STAR, - STATE(1222), 1, + STATE(1103), 1, sym_formal_parameters, - [36510] = 5, + [36135] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2344), 1, + ACTIONS(2353), 1, anon_sym_class, - STATE(716), 1, + STATE(709), 1, aux_sym_export_statement_repeat1, - STATE(750), 1, + STATE(745), 1, sym_decorator, - [36526] = 5, + [36151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2346), 1, + ACTIONS(2355), 1, sym_identifier, - ACTIONS(2348), 1, + ACTIONS(2357), 1, anon_sym_STAR, - STATE(1124), 1, + STATE(1089), 1, sym_formal_parameters, - [36542] = 5, + [36167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_extends, - STATE(233), 1, - sym_class_body, - STATE(1104), 1, - sym_class_heritage, - [36558] = 2, - ACTIONS(3), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_STAR, + STATE(1089), 1, + sym_formal_parameters, + [36183] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1192), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36568] = 4, - ACTIONS(1895), 1, + ACTIONS(2363), 1, + anon_sym_DQUOTE, + STATE(900), 1, + aux_sym_string_repeat1, + ACTIONS(2365), 2, + aux_sym_string_token1, + sym_escape_sequence, + [36197] = 4, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2350), 1, + ACTIONS(2363), 1, anon_sym_SQUOTE, - STATE(906), 1, + STATE(907), 1, aux_sym_string_repeat2, - ACTIONS(2285), 2, + ACTIONS(2367), 2, aux_sym_string_token2, sym_escape_sequence, - [36582] = 5, + [36211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(1648), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(2352), 1, - sym_identifier, - ACTIONS(2354), 1, - anon_sym_LBRACK, - STATE(416), 1, - sym_arguments, - [36598] = 5, + anon_sym_SEMI, + anon_sym_EQ, + [36221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(233), 1, + STATE(419), 1, sym_class_body, - STATE(1090), 1, + STATE(1101), 1, sym_class_heritage, - [36614] = 5, + [36237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(58), 1, + STATE(63), 1, sym_class_body, - STATE(1220), 1, + STATE(1100), 1, sym_class_heritage, - [36630] = 4, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2350), 1, - anon_sym_DQUOTE, - STATE(907), 1, - aux_sym_string_repeat1, - ACTIONS(2209), 2, - aux_sym_string_token1, - sym_escape_sequence, - [36644] = 5, + [36253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(2241), 1, anon_sym_extends, - STATE(461), 1, + STATE(510), 1, sym_class_body, - STATE(1164), 1, + STATE(1135), 1, sym_class_heritage, - [36660] = 5, + [36269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2369), 1, sym_identifier, - ACTIONS(2358), 1, - sym_jsx_identifier, - STATE(1075), 1, - sym_nested_identifier, - STATE(1269), 1, - sym_jsx_namespace_name, - [36676] = 2, + ACTIONS(2371), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_formal_parameters, + [36285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [36686] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1365), 3, + ACTIONS(2174), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [36695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1397), 1, - anon_sym_RBRACK, - STATE(915), 1, - aux_sym_array_repeat1, - [36708] = 2, - ACTIONS(1895), 1, + ACTIONS(2241), 1, + anon_sym_extends, + STATE(482), 1, + sym_class_body, + STATE(1202), 1, + sym_class_heritage, + [36301] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1365), 3, + ACTIONS(2373), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36717] = 4, + [36310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1409), 1, - anon_sym_RPAREN, - STATE(915), 1, - aux_sym_array_repeat1, - [36730] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1375), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [36739] = 2, - ACTIONS(1895), 1, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(2375), 1, + anon_sym_GT, + [36323] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1379), 3, + ACTIONS(1346), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [36757] = 2, - ACTIONS(1895), 1, + [36332] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2360), 3, + ACTIONS(1301), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36766] = 3, + [36341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_EQ, - ACTIONS(1059), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [36777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, - ACTIONS(2366), 1, - anon_sym_RBRACE, - STATE(996), 1, - aux_sym_object_repeat1, - [36790] = 2, - ACTIONS(1895), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + sym_identifier, + STATE(1129), 1, + sym_formal_parameters, + [36354] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2360), 3, + ACTIONS(1279), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36799] = 4, - ACTIONS(3), 1, + [36363] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1597), 1, - anon_sym_COMMA, - ACTIONS(2368), 1, - anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [36812] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1365), 3, + ACTIONS(1333), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36821] = 2, - ACTIONS(1895), 1, + [36372] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1361), 3, + ACTIONS(1342), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36830] = 2, - ACTIONS(1895), 1, + [36381] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2360), 3, + ACTIONS(1342), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36839] = 2, - ACTIONS(1895), 1, + [36390] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1342), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36848] = 2, - ACTIONS(1895), 1, + [36399] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1342), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36857] = 2, - ACTIONS(1895), 1, + [36408] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [36866] = 3, + ACTIONS(1753), 1, + anon_sym_RPAREN, + ACTIONS(2379), 1, + anon_sym_COMMA, + STATE(1028), 1, + aux_sym_formal_parameters_repeat1, + [36421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, - sym__automatic_semicolon, - ACTIONS(479), 2, - anon_sym_else, - anon_sym_while, - [36877] = 4, + ACTIONS(2381), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_LPAREN, + STATE(231), 1, + sym_statement_block, + [36434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(1396), 3, anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RBRACE, - STATE(1051), 1, - aux_sym_export_clause_repeat1, - [36890] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [36443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(2374), 1, - anon_sym_GT, - [36903] = 2, - ACTIONS(1895), 1, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(2385), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [36454] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(1292), 3, + ACTIONS(1382), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [36912] = 3, + [36463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_as, - ACTIONS(2376), 2, + ACTIONS(630), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [36923] = 4, + ACTIONS(1418), 1, + anon_sym_RBRACK, + STATE(978), 1, + aux_sym_array_repeat1, + [36476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2383), 1, - anon_sym_RPAREN, - STATE(990), 1, - aux_sym_formal_parameters_repeat1, - [36936] = 3, + ACTIONS(2320), 1, + anon_sym_RBRACK, + STATE(979), 1, + aux_sym_array_pattern_repeat1, + [36489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_EQ, - ACTIONS(2383), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36947] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + sym_identifier, + STATE(1156), 1, + sym_formal_parameters, + [36502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_EQ, - ACTIONS(2129), 2, + ACTIONS(630), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [36958] = 4, + ACTIONS(1418), 1, + anon_sym_RBRACK, + STATE(927), 1, + aux_sym_array_repeat1, + [36515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [36971] = 4, + ACTIONS(2320), 1, + anon_sym_RBRACK, + STATE(983), 1, + aux_sym_array_pattern_repeat1, + [36528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(2387), 1, - anon_sym_RPAREN, - STATE(915), 1, + ACTIONS(2389), 1, + anon_sym_RBRACK, + STATE(927), 1, aux_sym_array_repeat1, - [36984] = 2, + [36541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [36993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2394), 1, - anon_sym_RBRACE, - STATE(996), 1, - aux_sym_object_repeat1, - [37006] = 4, + ACTIONS(2391), 1, + anon_sym_RBRACK, + STATE(983), 1, + aux_sym_array_pattern_repeat1, + [36554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2393), 1, sym_identifier, - STATE(1101), 1, + STATE(1105), 1, sym_formal_parameters, - [37019] = 4, + [36567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2395), 1, + anon_sym_EQ, + ACTIONS(1033), 2, + anon_sym_in, + anon_sym_of, + [36578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2156), 3, anon_sym_COMMA, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [37032] = 4, + anon_sym_EQ, + anon_sym_RBRACK, + [36587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, + ACTIONS(2385), 1, + anon_sym_RBRACK, + ACTIONS(2397), 1, anon_sym_COMMA, - ACTIONS(2405), 1, - anon_sym_RBRACE, - STATE(1005), 1, - aux_sym_named_imports_repeat1, - [37045] = 2, - ACTIONS(1895), 1, + STATE(983), 1, + aux_sym_array_pattern_repeat1, + [36600] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2185), 3, + ACTIONS(2400), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - STATE(1078), 1, - sym_string, - [37067] = 4, + [36609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_GT, - [37080] = 2, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2402), 1, + sym_identifier, + STATE(1156), 1, + sym_formal_parameters, + [36622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [37089] = 4, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1429), 1, + anon_sym_RPAREN, + STATE(1033), 1, + aux_sym_array_repeat1, + [36635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(2411), 1, - anon_sym_GT, - [37102] = 4, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(1429), 1, + anon_sym_RPAREN, + STATE(927), 1, + aux_sym_array_repeat1, + [36648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, + ACTIONS(2339), 1, anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_RBRACE, - STATE(1040), 1, - aux_sym_named_imports_repeat1, - [37115] = 4, + ACTIONS(2341), 1, + anon_sym_RPAREN, + STATE(968), 1, + aux_sym_formal_parameters_repeat1, + [36661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2417), 1, + ACTIONS(1618), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, anon_sym_RBRACE, - STATE(1235), 1, - sym__import_export_specifier, - [37128] = 2, + STATE(1036), 1, + aux_sym_object_pattern_repeat1, + [36674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 3, - sym__automatic_semicolon, + ACTIONS(2406), 1, anon_sym_COMMA, - anon_sym_SEMI, - [37137] = 2, - ACTIONS(3), 1, + ACTIONS(2408), 1, + anon_sym_RBRACE, + STATE(1037), 1, + aux_sym_object_repeat1, + [36687] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2409), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [37146] = 4, + ACTIONS(2160), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [36696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2421), 1, + ACTIONS(2406), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, anon_sym_RBRACE, - STATE(1209), 1, - sym__import_export_specifier, - [37159] = 4, + STATE(1019), 1, + aux_sym_object_repeat1, + [36709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(2426), 1, + ACTIONS(2404), 1, anon_sym_RBRACE, - STATE(1010), 1, - aux_sym_export_clause_repeat1, - [37172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_EQ, - ACTIONS(1032), 2, - anon_sym_in, - anon_sym_of, - [37183] = 4, + STATE(1018), 1, + aux_sym_object_pattern_repeat1, + [36722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2430), 1, + ACTIONS(2410), 1, sym_identifier, - STATE(1122), 1, + STATE(1105), 1, sym_formal_parameters, - [37196] = 4, + [36735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(2412), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RBRACK, - STATE(1032), 1, - aux_sym_array_pattern_repeat1, - [37209] = 4, + anon_sym_SEMI, + [36744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2432), 1, - sym_identifier, - STATE(1084), 1, - sym_formal_parameters, - [37222] = 4, + ACTIONS(2414), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [36753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2416), 1, + anon_sym_EQ, + ACTIONS(1064), 2, anon_sym_COMMA, - ACTIONS(2434), 1, anon_sym_RBRACE, - STATE(1060), 1, - aux_sym_object_pattern_repeat1, - [37235] = 4, + [36764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, - ACTIONS(2436), 1, + ACTIONS(2276), 1, + sym_identifier, + ACTIONS(2418), 1, anon_sym_RBRACE, - STATE(1061), 1, - aux_sym_object_repeat1, - [37248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_RPAREN, - ACTIONS(2438), 1, - anon_sym_COMMA, - STATE(990), 1, - aux_sym_formal_parameters_repeat1, - [37261] = 4, + STATE(1128), 1, + sym__import_export_specifier, + [36777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, - ACTIONS(2436), 1, - anon_sym_RBRACE, - STATE(996), 1, - aux_sym_object_repeat1, - [37274] = 4, + ACTIONS(2420), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [36786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2422), 1, anon_sym_COMMA, - ACTIONS(2434), 1, + ACTIONS(2424), 1, anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [37287] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(1365), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37296] = 4, + STATE(1050), 1, + aux_sym_export_clause_repeat1, + [36799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - ACTIONS(2442), 1, - anon_sym_LPAREN, - STATE(236), 1, - sym_statement_block, - [37309] = 2, + ACTIONS(2426), 1, + anon_sym_EQ, + ACTIONS(1033), 2, + anon_sym_in, + anon_sym_of, + [36810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [37318] = 4, + ACTIONS(2428), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, + anon_sym_await, + STATE(36), 1, + sym__for_header, + [36823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2444), 1, + ACTIONS(2432), 1, anon_sym_COLON, - STATE(1167), 1, + STATE(1209), 1, sym_formal_parameters, - [37331] = 4, + [36836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_await, - STATE(39), 1, - sym__for_header, - [37344] = 4, + ACTIONS(2434), 1, + sym_identifier, + STATE(1156), 1, + sym_formal_parameters, + [36849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1397), 1, - anon_sym_RBRACK, - STATE(1028), 1, - aux_sym_array_repeat1, - [37357] = 4, + ACTIONS(2436), 1, + sym_identifier, + ACTIONS(2438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [36860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2275), 1, + ACTIONS(2296), 1, anon_sym_RBRACK, - STATE(1029), 1, + STATE(1043), 1, aux_sym_array_pattern_repeat1, - [37370] = 3, + [36873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_EQ, - ACTIONS(2450), 2, + ACTIONS(630), 1, anon_sym_COMMA, + ACTIONS(1402), 1, anon_sym_RBRACK, - [37381] = 4, + STATE(1042), 1, + aux_sym_array_repeat1, + [36886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + sym_identifier, + ACTIONS(2442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [36897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(2452), 1, + ACTIONS(1402), 1, anon_sym_RBRACK, - STATE(915), 1, + STATE(927), 1, aux_sym_array_repeat1, - [37394] = 4, + [36910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(2454), 1, + ACTIONS(2296), 1, anon_sym_RBRACK, - STATE(1032), 1, + STATE(983), 1, aux_sym_array_pattern_repeat1, - [37407] = 4, + [36923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, - anon_sym_COMMA, - ACTIONS(2259), 1, - anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_formal_parameters_repeat1, - [37420] = 4, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2444), 1, + sym_identifier, + STATE(1105), 1, + sym_formal_parameters, + [36936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(794), 1, + ACTIONS(785), 1, anon_sym_while, - ACTIONS(2456), 1, + ACTIONS(2446), 1, anon_sym_else, - STATE(250), 1, + STATE(275), 1, sym_else_clause, - [37433] = 4, + [36949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_RBRACK, - ACTIONS(2458), 1, - anon_sym_COMMA, - STATE(1032), 1, - aux_sym_array_pattern_repeat1, - [37446] = 4, + ACTIONS(2276), 1, + sym_identifier, + ACTIONS(2448), 1, + anon_sym_RBRACE, + STATE(1109), 1, + sym__import_export_specifier, + [36962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(2450), 1, anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RBRACK, - STATE(1072), 1, - aux_sym_array_pattern_repeat1, - [37459] = 4, + ACTIONS(2452), 1, + anon_sym_RBRACE, + STATE(1054), 1, + aux_sym_named_imports_repeat1, + [36975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(2454), 1, anon_sym_COMMA, - ACTIONS(1407), 1, - anon_sym_RBRACK, - STATE(1071), 1, - aux_sym_array_repeat1, - [37472] = 4, + ACTIONS(2456), 1, + anon_sym_RBRACE, + STATE(1014), 1, + aux_sym_named_imports_repeat1, + [36988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - sym_identifier, - STATE(1122), 1, - sym_formal_parameters, - [37485] = 4, + ACTIONS(2024), 1, + anon_sym_as, + ACTIONS(2458), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [36999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(2314), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1407), 1, - anon_sym_RBRACK, - STATE(915), 1, - aux_sym_array_repeat1, - [37498] = 4, + anon_sym_SEMI, + [37008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(2460), 1, anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RBRACK, - STATE(1032), 1, - aux_sym_array_pattern_repeat1, - [37511] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2463), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37520] = 4, + ACTIONS(2463), 1, + anon_sym_RBRACE, + STATE(1018), 1, + aux_sym_object_pattern_repeat1, + [37021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, ACTIONS(2465), 1, + anon_sym_COMMA, + ACTIONS(2468), 1, anon_sym_RBRACE, - STATE(1209), 1, - sym__import_export_specifier, - [37533] = 4, + STATE(1019), 1, + aux_sym_object_repeat1, + [37034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 1, - anon_sym_COMMA, ACTIONS(2470), 1, - anon_sym_RBRACE, - STATE(1040), 1, - aux_sym_named_imports_repeat1, - [37546] = 4, + anon_sym_LPAREN, + ACTIONS(2472), 1, + anon_sym_await, + STATE(34), 1, + sym__for_header, + [37047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - ACTIONS(2472), 1, + ACTIONS(2474), 1, anon_sym_RBRACE, - STATE(996), 1, + STATE(1019), 1, aux_sym_object_repeat1, - [37559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - sym_identifier, - STATE(1206), 1, - sym_formal_parameters, - [37572] = 4, + [37060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, + ACTIONS(1618), 1, + anon_sym_COMMA, ACTIONS(2476), 1, - sym_identifier, - STATE(1206), 1, - sym_formal_parameters, - [37585] = 4, + anon_sym_RBRACE, + STATE(1018), 1, + aux_sym_object_pattern_repeat1, + [37073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2416), 1, + anon_sym_EQ, + ACTIONS(2156), 2, anon_sym_COMMA, - ACTIONS(2478), 1, anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [37598] = 3, + [37084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + sym_identifier, + STATE(1072), 1, + sym_formal_parameters, + [37097] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2480), 1, - anon_sym_EQ, - ACTIONS(1032), 2, - anon_sym_in, - anon_sym_of, - [37609] = 4, + sym_identifier, + STATE(693), 1, + sym_decorator_member_expression, + STATE(748), 1, + sym_decorator_call_expression, + [37110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, ACTIONS(2482), 1, anon_sym_GT, - [37622] = 4, + [37123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(2484), 2, anon_sym_COMMA, - ACTIONS(2484), 1, anon_sym_RPAREN, - STATE(915), 1, - aux_sym_array_repeat1, - [37635] = 4, + [37134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, + ACTIONS(2484), 1, + anon_sym_RPAREN, ACTIONS(2486), 1, - anon_sym_RBRACE, - STATE(996), 1, - aux_sym_object_repeat1, - [37648] = 4, + anon_sym_COMMA, + STATE(1028), 1, + aux_sym_formal_parameters_repeat1, + [37147] = 2, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2373), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [37156] = 2, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2373), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [37165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(1888), 1, anon_sym_COLON, - STATE(1167), 1, - sym_formal_parameters, - [37661] = 4, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(2489), 1, + anon_sym_GT, + [37178] = 2, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2373), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [37187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(2486), 1, - anon_sym_RBRACE, - STATE(1041), 1, - aux_sym_object_repeat1, - [37674] = 4, + ACTIONS(2491), 1, + anon_sym_RPAREN, + STATE(927), 1, + aux_sym_array_repeat1, + [37200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - ACTIONS(2492), 1, + ACTIONS(2493), 1, anon_sym_RBRACE, - STATE(1010), 1, - aux_sym_export_clause_repeat1, - [37687] = 4, + STATE(1019), 1, + aux_sym_object_repeat1, + [37213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(2478), 1, + ACTIONS(2495), 1, anon_sym_RBRACE, - STATE(993), 1, + STATE(1018), 1, aux_sym_object_pattern_repeat1, - [37700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [37709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - sym_identifier, - STATE(699), 1, - sym_decorator_member_expression, - STATE(753), 1, - sym_decorator_call_expression, - [37722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [37731] = 4, + [37226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2500), 1, + ACTIONS(1618), 1, + anon_sym_COMMA, + ACTIONS(2497), 1, anon_sym_RBRACE, - STATE(1235), 1, - sym__import_export_specifier, - [37744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2502), 1, - sym_identifier, - STATE(1122), 1, - sym_formal_parameters, - [37757] = 4, + STATE(1018), 1, + aux_sym_object_pattern_repeat1, + [37239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - ACTIONS(2504), 1, + ACTIONS(2499), 1, anon_sym_RBRACE, - STATE(996), 1, + STATE(1019), 1, aux_sym_object_repeat1, - [37770] = 4, + [37252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_COMMA, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_RBRACE, - STATE(998), 1, + STATE(1018), 1, aux_sym_object_pattern_repeat1, - [37783] = 4, + [37265] = 2, + ACTIONS(1910), 1, + sym_comment, + ACTIONS(2216), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [37274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, - anon_sym_COMMA, - ACTIONS(2508), 1, - anon_sym_RBRACE, - STATE(998), 1, - aux_sym_object_pattern_repeat1, - [37796] = 4, + ACTIONS(2503), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [37283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, - ACTIONS(2510), 1, - anon_sym_RBRACE, - STATE(996), 1, - aux_sym_object_repeat1, - [37809] = 4, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, + STATE(1136), 1, + sym_string, + [37296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1423), 1, - anon_sym_RPAREN, - STATE(915), 1, + ACTIONS(2505), 1, + anon_sym_RBRACK, + STATE(927), 1, aux_sym_array_repeat1, - [37822] = 4, + [37309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - ACTIONS(2512), 1, - sym_identifier, - STATE(1206), 1, - sym_formal_parameters, - [37835] = 2, + ACTIONS(611), 1, + anon_sym_COMMA, + ACTIONS(2507), 1, + anon_sym_RBRACK, + STATE(983), 1, + aux_sym_array_pattern_repeat1, + [37322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [37844] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(2509), 1, + anon_sym_GT, + [37335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - ACTIONS(1423), 1, - anon_sym_RPAREN, - STATE(994), 1, - aux_sym_array_repeat1, - [37857] = 2, - ACTIONS(1895), 1, + ACTIONS(2511), 1, + anon_sym_RBRACE, + STATE(1019), 1, + aux_sym_object_repeat1, + [37348] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2171), 3, + ACTIONS(1350), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37866] = 3, + [37357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - sym_identifier, - ACTIONS(2518), 2, + ACTIONS(2513), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [37877] = 3, + [37366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, + ACTIONS(2276), 1, sym_identifier, - ACTIONS(2522), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37888] = 4, + ACTIONS(2515), 1, + anon_sym_RBRACE, + STATE(1128), 1, + sym__import_export_specifier, + [37379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - anon_sym_LPAREN, - ACTIONS(2526), 1, - anon_sym_await, - STATE(33), 1, - sym__for_header, - [37901] = 2, + ACTIONS(2513), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [37388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 3, + ACTIONS(2517), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [37910] = 4, + ACTIONS(2520), 1, + anon_sym_RBRACE, + STATE(1050), 1, + aux_sym_export_clause_repeat1, + [37401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(2528), 1, - anon_sym_RBRACK, - STATE(915), 1, + ACTIONS(1431), 1, + anon_sym_RPAREN, + STATE(1061), 1, aux_sym_array_repeat1, - [37923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - anon_sym_COMMA, - ACTIONS(2530), 1, - anon_sym_RBRACK, - STATE(1032), 1, - aux_sym_array_pattern_repeat1, - [37936] = 4, + [37414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1409), 1, + ACTIONS(1431), 1, anon_sym_RPAREN, - STATE(1047), 1, + STATE(927), 1, aux_sym_array_repeat1, - [37949] = 3, + [37427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_class_body, - [37959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_GT, - [37969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2352), 1, + ACTIONS(2276), 1, sym_identifier, - ACTIONS(2354), 1, - anon_sym_LBRACK, - [37979] = 3, + ACTIONS(2522), 1, + anon_sym_RBRACE, + STATE(1109), 1, + sym__import_export_specifier, + [37440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2534), 1, - anon_sym_STAR, - [37989] = 2, + ACTIONS(2524), 1, + anon_sym_COMMA, + ACTIONS(2527), 1, + anon_sym_RBRACE, + STATE(1054), 1, + aux_sym_named_imports_repeat1, + [37453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37997] = 3, + ACTIONS(1618), 1, + anon_sym_COMMA, + ACTIONS(2529), 1, + anon_sym_RBRACE, + STATE(1022), 1, + aux_sym_object_pattern_repeat1, + [37466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_class_body, - [38007] = 3, + ACTIONS(2406), 1, + anon_sym_COMMA, + ACTIONS(2531), 1, + anon_sym_RBRACE, + STATE(1021), 1, + aux_sym_object_repeat1, + [37479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1203), 1, - sym_parenthesized_expression, - [38017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - sym_identifier, - ACTIONS(2542), 1, - anon_sym_STAR, - [38027] = 3, + ACTIONS(2533), 1, + anon_sym_COLON, + STATE(1209), 1, + sym_formal_parameters, + [37492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_class_body, - [38037] = 3, + ACTIONS(2406), 1, + anon_sym_COMMA, + ACTIONS(2531), 1, + anon_sym_RBRACE, + STATE(1019), 1, + aux_sym_object_repeat1, + [37505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_statement_block, - [38047] = 3, + ACTIONS(1618), 1, + anon_sym_COMMA, + ACTIONS(2529), 1, + anon_sym_RBRACE, + STATE(1018), 1, + aux_sym_object_pattern_repeat1, + [37518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_statement_block, - [38057] = 3, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(2537), 1, + anon_sym_RBRACE, + STATE(1000), 1, + aux_sym_export_clause_repeat1, + [37531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - anon_sym_LBRACE, - STATE(517), 1, - sym_statement_block, - [38067] = 3, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(2539), 1, + anon_sym_RPAREN, + STATE(927), 1, + aux_sym_array_repeat1, + [37544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(702), 1, - sym_statement_block, - [38077] = 3, + STATE(51), 1, + sym_class_body, + [37554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, - [38087] = 3, + ACTIONS(2541), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [37562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(215), 1, - sym_statement_block, - [38097] = 3, + STATE(575), 1, + sym_class_body, + [37572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(489), 1, - sym_class_body, - [38107] = 3, + STATE(572), 1, + sym_statement_block, + [37582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, - [38117] = 2, + STATE(415), 1, + sym_statement_block, + [37592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 2, + ACTIONS(1400), 2, sym__automatic_semicolon, anon_sym_SEMI, - [38125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_statement_block, - [38135] = 3, + [37600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_class_body, - [38145] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1198), 1, + sym_formal_parameters, + [37610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2547), 2, anon_sym_LBRACE, - STATE(571), 1, - sym_statement_block, - [38155] = 3, + anon_sym_EQ_GT, + [37618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2549), 1, anon_sym_LBRACE, - STATE(465), 1, - sym_class_body, - [38165] = 3, + STATE(300), 1, + sym_switch_body, + [37628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2551), 1, anon_sym_LPAREN, - STATE(36), 1, + STATE(1151), 1, sym_parenthesized_expression, - [38175] = 3, + [37638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - STATE(726), 1, + STATE(496), 1, sym_statement_block, - [38185] = 3, + [37648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(228), 1, + STATE(517), 1, sym_statement_block, - [38195] = 3, + [37658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(526), 1, sym_statement_block, - [38205] = 3, + [37668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1186), 1, + STATE(1166), 1, sym_formal_parameters, - [38215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACE, - STATE(495), 1, - sym_statement_block, - [38225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_statement_block, - [38235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_statement_block, - [38245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 1, - anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, - [38255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_class_body, - [38265] = 3, + [37678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1189), 1, - sym_formal_parameters, - [38275] = 3, + ACTIONS(2553), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(2482), 1, + ACTIONS(2375), 1, anon_sym_GT, - [38285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1190), 1, - sym_formal_parameters, - [38295] = 3, + [37696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2375), 1, anon_sym_GT, - [38305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [38313] = 3, + [37706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - STATE(1209), 1, - sym__import_export_specifier, - [38323] = 3, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(246), 1, + sym_statement_block, + [37716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(224), 1, + STATE(523), 1, sym_class_body, - [38333] = 3, + [37726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_statement_block, - [38343] = 3, + ACTIONS(2052), 2, + anon_sym_in, + anon_sym_of, + [37734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(595), 1, + STATE(545), 1, sym_statement_block, - [38353] = 3, + [37744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(550), 1, sym_statement_block, - [38363] = 3, + [37754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(628), 1, + STATE(551), 1, sym_class_body, - [38373] = 3, + [37764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1200), 1, - sym_formal_parameters, - [38383] = 3, + ACTIONS(2385), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [37772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(508), 1, + STATE(509), 1, sym_statement_block, - [38393] = 3, + [37782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(718), 1, - sym_statement_block, - [38403] = 3, + ACTIONS(2555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(624), 1, + STATE(576), 1, sym_statement_block, - [38413] = 3, + [37800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(59), 1, + STATE(599), 1, sym_statement_block, - [38423] = 3, + [37810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym_parenthesized_expression, + [37820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(715), 1, sym_statement_block, - [38433] = 3, + [37830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1211), 1, - sym_formal_parameters, - [38443] = 3, + ACTIONS(2559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(606), 1, - sym_statement_block, - [38453] = 3, + STATE(620), 1, + sym_class_body, + [37848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1210), 1, - sym_formal_parameters, - [38463] = 3, + ACTIONS(2290), 1, + anon_sym_from, + STATE(1143), 1, + sym__from_clause, + [37858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(703), 1, - sym_statement_block, - [38473] = 3, + ACTIONS(2561), 1, + anon_sym_COMMA, + ACTIONS(2563), 1, + anon_sym_from, + [37868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_statement_block, - [38483] = 2, + ACTIONS(2565), 1, + sym_identifier, + ACTIONS(2567), 1, + sym_jsx_identifier, + [37878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 2, + ACTIONS(1848), 2, sym__automatic_semicolon, anon_sym_SEMI, - [38491] = 3, + [37886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1086), 1, - sym_formal_parameters, - [38501] = 3, + ACTIONS(2569), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [37894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - STATE(467), 1, + STATE(412), 1, sym_class_body, - [38511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1092), 1, - sym_formal_parameters, - [38521] = 3, + [37904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1241), 1, - sym_formal_parameters, - [38531] = 3, + ACTIONS(2182), 1, + anon_sym_LBRACE, + STATE(59), 1, + sym_class_body, + [37914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - sym_identifier, - ACTIONS(2552), 1, - sym_jsx_identifier, - [38541] = 3, + ACTIONS(2174), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_class_body, + [37924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1097), 1, + STATE(1155), 1, sym_formal_parameters, - [38551] = 3, + [37934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2543), 1, + anon_sym_LBRACE, + STATE(597), 1, + sym_statement_block, + [37944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1243), 1, + STATE(1125), 1, sym_formal_parameters, - [38561] = 3, + [37954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(603), 1, sym_statement_block, - [38571] = 3, + [37964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(54), 1, sym_statement_block, - [38581] = 3, + [37974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1230), 1, + STATE(1106), 1, sym_formal_parameters, - [38591] = 3, + [37992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_statement_block, - [38601] = 2, + ACTIONS(2571), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [38609] = 3, + ACTIONS(2182), 1, + anon_sym_LBRACE, + STATE(623), 1, + sym_class_body, + [38010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(269), 1, + STATE(699), 1, sym_statement_block, - [38619] = 2, + [38020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38627] = 3, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_statement_block, + [38030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN, - STATE(1184), 1, - sym_parenthesized_expression, - [38637] = 3, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(714), 1, + sym_statement_block, + [38040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1247), 1, + STATE(1211), 1, sym_formal_parameters, - [38647] = 3, + [38050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1226), 1, + STATE(1208), 1, sym_formal_parameters, - [38657] = 2, + [38060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [38665] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1207), 1, + sym_formal_parameters, + [38070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1171), 1, + STATE(1091), 1, sym_formal_parameters, - [38675] = 3, + [38080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_statement_block, + [38090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1218), 1, + STATE(1178), 1, sym_formal_parameters, - [38685] = 3, + [38100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1216), 1, + STATE(1175), 1, sym_formal_parameters, - [38695] = 3, + [38110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1214), 1, + STATE(1170), 1, sym_formal_parameters, - [38705] = 3, + [38120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(723), 1, + STATE(708), 1, sym_statement_block, - [38715] = 3, + [38130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1163), 1, + sym_formal_parameters, + [38140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(710), 1, + STATE(706), 1, sym_statement_block, - [38725] = 3, + [38150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(709), 1, + STATE(52), 1, sym_statement_block, - [38735] = 3, + [38160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(708), 1, + STATE(58), 1, sym_statement_block, - [38745] = 3, + [38170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(705), 1, + STATE(500), 1, sym_statement_block, - [38755] = 2, + [38180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [38763] = 3, + ACTIONS(2573), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(422), 1, sym_statement_block, - [38773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 1, - anon_sym_SEMI, - ACTIONS(2564), 1, - sym__automatic_semicolon, - [38783] = 3, + [38198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_from, - STATE(1213), 1, - sym__from_clause, - [38793] = 3, + ACTIONS(2575), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - STATE(1235), 1, - sym__import_export_specifier, - [38803] = 3, + ACTIONS(1495), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [38214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - STATE(61), 1, + STATE(436), 1, sym_statement_block, - [38813] = 3, + [38224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_STAR, - [38823] = 2, + ACTIONS(2290), 1, + anon_sym_from, + STATE(1138), 1, + sym__from_clause, + [38234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 2, - sym__automatic_semicolon, + ACTIONS(2577), 1, anon_sym_SEMI, - [38831] = 3, + ACTIONS(2579), 1, + sym__automatic_semicolon, + [38244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2182), 1, anon_sym_LBRACE, - STATE(435), 1, + STATE(502), 1, sym_class_body, - [38841] = 2, + [38254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38849] = 3, + ACTIONS(2581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [38262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1151), 1, - sym_formal_parameters, - [38859] = 3, + ACTIONS(1896), 1, + anon_sym_DOT, + ACTIONS(2509), 1, + anon_sym_GT, + [38272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_statement_block, - [38869] = 3, + ACTIONS(2583), 1, + anon_sym_SEMI, + ACTIONS(2585), 1, + sym__automatic_semicolon, + [38282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1121), 1, - sym_formal_parameters, - [38879] = 3, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(2509), 1, + anon_sym_GT, + [38292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - STATE(1178), 1, - sym_formal_parameters, - [38889] = 3, + STATE(1070), 1, + sym_parenthesized_expression, + [38302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1174), 1, - sym_formal_parameters, - [38899] = 3, + ACTIONS(2335), 1, + sym_identifier, + ACTIONS(2337), 1, + anon_sym_LBRACK, + [38312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(462), 1, + STATE(697), 1, sym_statement_block, - [38909] = 2, + [38322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [38917] = 2, + ACTIONS(2587), 1, + anon_sym_SEMI, + ACTIONS(2589), 1, + sym__automatic_semicolon, + [38332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [38925] = 3, + ACTIONS(1392), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [38340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(437), 1, + STATE(718), 1, sym_statement_block, - [38935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - [38945] = 3, + [38350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - [38955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38963] = 3, + STATE(37), 1, + sym__for_header, + [38360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(438), 1, + STATE(704), 1, sym_statement_block, - [38973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2401), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38981] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38989] = 3, + [38370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1137), 1, - sym_formal_parameters, - [38999] = 3, + ACTIONS(2276), 1, + sym_identifier, + STATE(1128), 1, + sym__import_export_specifier, + [38380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - STATE(1099), 1, - sym_formal_parameters, - [39009] = 3, + STATE(35), 1, + sym_parenthesized_expression, + [38390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 1, - anon_sym_COMMA, - ACTIONS(2582), 1, - anon_sym_from, - [39019] = 2, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_statement_block, + [38400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 2, + ACTIONS(2593), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_from, - STATE(1158), 1, - sym__from_clause, - [39037] = 3, + [38408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_statement_block, - [39047] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1088), 1, + sym_formal_parameters, + [38418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1120), 1, + STATE(1124), 1, sym_formal_parameters, - [39057] = 2, + [38428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39065] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1086), 1, + sym_formal_parameters, + [38438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(55), 1, sym_statement_block, - [39075] = 3, + [38448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2543), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(534), 1, sym_statement_block, - [39085] = 3, + [38458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1118), 1, + STATE(1126), 1, sym_formal_parameters, - [39095] = 2, + [38468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_in, - anon_sym_of, - [39103] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1181), 1, + sym_formal_parameters, + [38478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_SEMI, - ACTIONS(2592), 1, + ACTIONS(2595), 2, sym__automatic_semicolon, - [39113] = 3, + anon_sym_SEMI, + [38486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1136), 1, - sym_formal_parameters, - [39123] = 3, + ACTIONS(2597), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [38494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1115), 1, + STATE(1083), 1, sym_formal_parameters, - [39133] = 3, + [38504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2596), 1, - anon_sym_STAR, - [39143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1114), 1, + STATE(1082), 1, sym_formal_parameters, - [39153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39161] = 3, + [38514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1161), 1, - sym_formal_parameters, - [39171] = 3, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(725), 1, + sym_statement_block, + [38524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(227), 1, sym_statement_block, - [39181] = 3, + [38534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - STATE(1103), 1, - sym_formal_parameters, - [39191] = 3, + STATE(33), 1, + sym_parenthesized_expression, + [38544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1102), 1, - sym_formal_parameters, - [39201] = 3, + ACTIONS(2545), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_statement_block, + [38554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - STATE(299), 1, - sym_switch_body, - [39211] = 3, + STATE(414), 1, + sym_statement_block, + [38564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(26), 1, - sym__for_header, - [39221] = 3, + STATE(1074), 1, + sym_formal_parameters, + [38574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(2374), 1, + ACTIONS(2489), 1, anon_sym_GT, - [39231] = 3, + [38584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(604), 1, + STATE(726), 1, sym_statement_block, - [39241] = 3, + [38594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(2374), 1, + ACTIONS(2489), 1, anon_sym_GT, - [39251] = 2, + [38604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [39259] = 2, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1073), 1, + sym_formal_parameters, + [38614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39267] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1122), 1, + sym_formal_parameters, + [38624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_statement_block, - [39277] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1118), 1, + sym_formal_parameters, + [38634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(56), 1, + STATE(711), 1, sym_statement_block, - [39287] = 3, + [38644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1094), 1, + STATE(1113), 1, sym_formal_parameters, - [39297] = 3, + [38654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_SEMI, - ACTIONS(2610), 1, - sym__automatic_semicolon, - [39307] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1112), 1, + sym_formal_parameters, + [38664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(716), 1, sym_statement_block, - [39317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1873), 1, - anon_sym_COLON, - ACTIONS(2407), 1, - anon_sym_GT, - [39327] = 3, + [38674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_statement_block, - [39337] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1111), 1, + sym_formal_parameters, + [38684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 1, - sym_identifier, - ACTIONS(2310), 1, - anon_sym_LBRACK, - [39347] = 3, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(722), 1, + STATE(712), 1, sym_statement_block, - [39357] = 3, + [38702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [38710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1119), 1, + STATE(1147), 1, sym_formal_parameters, - [39367] = 3, + [38720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_LBRACE, - STATE(52), 1, - sym_class_body, - [39377] = 3, + ACTIONS(2484), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1126), 1, + STATE(1065), 1, sym_formal_parameters, - [39387] = 3, + [38738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(717), 1, sym_statement_block, - [39397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1127), 1, - sym_formal_parameters, - [39407] = 3, + [38748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_formal_parameters, - [39417] = 3, + ACTIONS(2276), 1, + sym_identifier, + STATE(1109), 1, + sym__import_export_specifier, + [38758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1139), 1, - sym_formal_parameters, - [39427] = 3, + ACTIONS(2599), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [38766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - STATE(731), 1, - sym_statement_block, - [39437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39445] = 3, + STATE(486), 1, + sym_class_body, + [38776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1152), 1, + STATE(1127), 1, sym_formal_parameters, - [39455] = 3, + [38786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(2411), 1, + ACTIONS(2482), 1, anon_sym_GT, - [39465] = 3, + [38796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_statement_block, - [39475] = 3, + ACTIONS(2108), 1, + anon_sym_LPAREN, + STATE(1145), 1, + sym_formal_parameters, + [38806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1896), 1, anon_sym_DOT, - ACTIONS(2411), 1, + ACTIONS(2482), 1, anon_sym_GT, - [39485] = 3, + [38816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_LPAREN, - STATE(1153), 1, - sym_formal_parameters, - [39495] = 3, + ACTIONS(2545), 1, + anon_sym_LBRACE, + STATE(484), 1, + sym_statement_block, + [38826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - STATE(25), 1, + STATE(28), 1, sym__for_header, - [39505] = 2, + [38836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39513] = 2, + ACTIONS(2601), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [38844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39521] = 2, + ACTIONS(2322), 1, + sym_identifier, + ACTIONS(2324), 1, + anon_sym_LBRACK, + [38854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39529] = 3, + ACTIONS(2545), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_statement_block, + [38864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(38), 1, - sym_parenthesized_expression, - [39539] = 3, + STATE(1167), 1, + sym_formal_parameters, + [38874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1157), 1, + STATE(1066), 1, sym_formal_parameters, - [39549] = 2, + [38884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 2, + ACTIONS(2603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39557] = 3, + [38892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(421), 1, sym_class_body, - [39567] = 3, + [38902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_statement_block, - [39577] = 3, + ACTIONS(2468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_LPAREN, + ACTIONS(1779), 1, + anon_sym_EQ_GT, + [38920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_LPAREN, + ACTIONS(2605), 1, + anon_sym_EQ_GT, + [38930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1154), 1, + STATE(1142), 1, sym_formal_parameters, - [39587] = 3, + [38940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(707), 1, sym_statement_block, - [39597] = 3, + [38950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(224), 1, - sym_class_body, - [39607] = 3, + STATE(700), 1, + sym_statement_block, + [38960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, - [39617] = 2, + ACTIONS(2381), 1, + anon_sym_LBRACE, + STATE(702), 1, + sym_statement_block, + [38970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 2, + ACTIONS(2557), 1, anon_sym_LPAREN, - anon_sym_COLON, - [39625] = 3, + STATE(42), 1, + sym_parenthesized_expression, + [38980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2381), 1, anon_sym_LBRACE, - STATE(729), 1, + STATE(698), 1, sym_statement_block, - [39635] = 3, + [38990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, - [39645] = 3, + STATE(1186), 1, + sym_formal_parameters, + [39000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - STATE(35), 1, + STATE(44), 1, sym_parenthesized_expression, - [39655] = 3, + [39010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - STATE(1155), 1, - sym_formal_parameters, - [39665] = 2, + STATE(30), 1, + sym_parenthesized_expression, + [39020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2426), 1, anon_sym_EQ, - [39672] = 2, + [39027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1496), 1, + ACTIONS(1501), 1, anon_sym_RPAREN, - [39679] = 2, + [39034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_SLASH2, - [39686] = 2, + ACTIONS(2607), 1, + anon_sym_COLON, + [39041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - [39693] = 2, + ACTIONS(2609), 1, + anon_sym_target, + [39048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, + ACTIONS(2611), 1, sym_identifier, - [39700] = 2, + [39055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - [39707] = 2, + ACTIONS(2613), 1, + anon_sym_RBRACE, + [39062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2624), 1, - anon_sym_EQ_GT, - [39714] = 2, + ACTIONS(2615), 1, + anon_sym_from, + [39069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2617), 1, anon_sym_GT, - [39721] = 2, + [39076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(2482), 1, anon_sym_GT, - [39728] = 2, + [39083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_GT, - [39735] = 2, + ACTIONS(2619), 1, + anon_sym_EQ_GT, + [39090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, - anon_sym_GT, - [39742] = 2, + ACTIONS(2621), 1, + anon_sym_EQ_GT, + [39097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_while, - [39749] = 2, + ACTIONS(2623), 1, + anon_sym_from, + [39104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 1, - anon_sym_GT, - [39756] = 2, + ACTIONS(2625), 1, + anon_sym_EQ_GT, + [39111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_GT, - [39763] = 2, + ACTIONS(2627), 1, + anon_sym_from, + [39118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(2629), 1, anon_sym_GT, - [39770] = 2, + [39125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, + ACTIONS(2631), 1, anon_sym_GT, - [39777] = 2, - ACTIONS(3), 1, + [39132] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2642), 1, - anon_sym_EQ_GT, - [39784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym_target, - [39791] = 2, + ACTIONS(2633), 1, + sym_regex_pattern, + [39139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_GT, - [39798] = 2, + ACTIONS(2635), 1, + anon_sym_from, + [39146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - sym_identifier, - [39805] = 2, - ACTIONS(3), 1, + ACTIONS(2637), 1, + anon_sym_from, + [39153] = 2, + ACTIONS(1910), 1, sym_comment, - ACTIONS(2308), 1, - sym_identifier, - [39812] = 2, + ACTIONS(2639), 1, + sym_regex_pattern, + [39160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 1, - sym_identifier, - [39819] = 2, + ACTIONS(2641), 1, + anon_sym_GT, + [39167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, - anon_sym_RBRACK, - [39826] = 2, + ACTIONS(2643), 1, + anon_sym_GT, + [39174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_from, - [39833] = 2, + ACTIONS(1497), 1, + anon_sym_RPAREN, + [39181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - anon_sym_RBRACE, - [39840] = 2, + ACTIONS(2645), 1, + anon_sym_GT, + [39188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(2647), 1, anon_sym_GT, - [39847] = 2, + [39195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_from, - [39854] = 2, + ACTIONS(2649), 1, + ts_builtin_sym_end, + [39202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2651), 1, anon_sym_GT, - [39861] = 2, + [39209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2653), 1, anon_sym_GT, - [39868] = 2, + [39216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2655), 1, anon_sym_GT, - [39875] = 2, + [39223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, + ACTIONS(2489), 1, anon_sym_GT, - [39882] = 2, + [39230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, + ACTIONS(2657), 1, anon_sym_GT, - [39889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1484), 1, - anon_sym_COLON, - [39896] = 2, + [39237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(1509), 1, anon_sym_RPAREN, - [39903] = 2, + [39244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 1, + ACTIONS(2659), 1, anon_sym_GT, - [39910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_RPAREN, - [39917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_RPAREN, - [39924] = 2, + [39251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(2661), 1, anon_sym_GT, - [39931] = 2, + [39258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, - sym_identifier, - [39938] = 2, + ACTIONS(2663), 1, + anon_sym_GT, + [39265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2668), 1, + ACTIONS(2665), 1, anon_sym_GT, - [39945] = 2, + [39272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, - sym_identifier, - [39952] = 2, + ACTIONS(2667), 1, + anon_sym_GT, + [39279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(2669), 1, anon_sym_GT, - [39959] = 2, + [39286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2671), 1, anon_sym_GT, - [39966] = 2, + [39293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(2673), 1, anon_sym_EQ_GT, - [39973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - anon_sym_RPAREN, - [39980] = 2, + [39300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2675), 1, anon_sym_EQ_GT, - [39987] = 2, + [39307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, - anon_sym_EQ_GT, - [39994] = 2, + ACTIONS(1499), 1, + anon_sym_RPAREN, + [39314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - anon_sym_from, - [40001] = 2, + ACTIONS(2677), 1, + anon_sym_EQ_GT, + [39321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2679), 1, anon_sym_GT, - [40008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_RPAREN, - [40015] = 2, + [39328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, + ACTIONS(1648), 1, anon_sym_LPAREN, - [40022] = 2, + [39335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 1, - anon_sym_as, - [40029] = 2, + ACTIONS(1503), 1, + anon_sym_RBRACK, + [39342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, - anon_sym_RBRACE, - [40036] = 2, + ACTIONS(2681), 1, + anon_sym_GT, + [39349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 1, - anon_sym_GT, - [40043] = 2, + ACTIONS(2322), 1, + sym_identifier, + [39356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, - anon_sym_from, - [40050] = 2, + ACTIONS(2683), 1, + anon_sym_SLASH2, + [39363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, - anon_sym_COLON, - [40057] = 2, + ACTIONS(2685), 1, + anon_sym_EQ_GT, + [39370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_EQ, - [40064] = 2, + ACTIONS(2687), 1, + anon_sym_EQ_GT, + [39377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, - anon_sym_RPAREN, - [40071] = 2, + ACTIONS(2689), 1, + sym_identifier, + [39384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, - anon_sym_GT, - [40078] = 2, + ACTIONS(2416), 1, + anon_sym_EQ, + [39391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2335), 1, sym_identifier, - [40085] = 2, + [39398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, - anon_sym_RBRACE, - [40092] = 2, + ACTIONS(2691), 1, + anon_sym_COLON, + [39405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_function, - [40099] = 2, + ACTIONS(2509), 1, + anon_sym_GT, + [39412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2693), 1, anon_sym_from, - [40106] = 2, + [39419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 1, - sym_identifier, - [40113] = 2, + ACTIONS(2695), 1, + anon_sym_target, + [39426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(1515), 1, anon_sym_RBRACE, - [40120] = 2, + [39433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 1, - anon_sym_from, - [40127] = 2, + ACTIONS(1439), 1, + anon_sym_RBRACK, + [39440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 1, - anon_sym_EQ, - [40134] = 2, + ACTIONS(1486), 1, + anon_sym_RBRACK, + [39447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(2697), 1, anon_sym_EQ_GT, - [40141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_COLON, - [40148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_EQ, - [40155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, - ts_builtin_sym_end, - [40162] = 2, + [39454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 1, + ACTIONS(2605), 1, anon_sym_EQ_GT, - [40169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_from, - [40176] = 2, + [39461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 1, + ACTIONS(2693), 1, anon_sym_from, - [40183] = 2, + [39468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, - anon_sym_from, - [40190] = 2, + ACTIONS(2699), 1, + sym_identifier, + [39475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, - anon_sym_RPAREN, - [40197] = 2, + ACTIONS(1437), 1, + anon_sym_RBRACE, + [39482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_SLASH2, - [40204] = 2, + ACTIONS(2701), 1, + anon_sym_GT, + [39489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2726), 1, - anon_sym_GT, - [40211] = 2, + ACTIONS(1451), 1, + anon_sym_COLON, + [39496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, - sym_identifier, - [40218] = 2, + ACTIONS(2703), 1, + anon_sym_RPAREN, + [39503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 1, - anon_sym_EQ_GT, - [40225] = 2, + ACTIONS(2705), 1, + anon_sym_EQ, + [39510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_EQ_GT, - [40232] = 2, + ACTIONS(1441), 1, + anon_sym_RBRACE, + [39517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, - anon_sym_EQ_GT, - [40239] = 2, + ACTIONS(1490), 1, + anon_sym_RPAREN, + [39524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(2707), 1, anon_sym_EQ, - [40246] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2736), 1, - sym_regex_pattern, - [40253] = 2, + [39531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_GT, - [40260] = 2, + ACTIONS(2709), 1, + anon_sym_as, + [39538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 1, - anon_sym_target, - [40267] = 2, + ACTIONS(2711), 1, + sym_identifier, + [39545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 1, + ACTIONS(2713), 1, anon_sym_GT, - [40274] = 2, + [39552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, + ACTIONS(1779), 1, + anon_sym_EQ_GT, + [39559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 1, anon_sym_RPAREN, - [40281] = 2, + [39566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, - sym_identifier, - [40288] = 2, + ACTIONS(2563), 1, + anon_sym_from, + [39573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, - anon_sym_RBRACK, - [40295] = 2, + ACTIONS(2715), 1, + anon_sym_SLASH2, + [39580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_GT, - [40302] = 2, + ACTIONS(2717), 1, + anon_sym_while, + [39587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 1, - anon_sym_GT, - [40309] = 2, + ACTIONS(1447), 1, + anon_sym_RPAREN, + [39594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_GT, - [40316] = 2, + ACTIONS(2719), 1, + anon_sym_EQ_GT, + [39601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_GT, - [40323] = 2, + ACTIONS(2395), 1, + anon_sym_EQ, + [39608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_GT, - [40330] = 2, + ACTIONS(2721), 1, + anon_sym_from, + [39615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, - sym_identifier, - [40337] = 2, + ACTIONS(1445), 1, + anon_sym_RPAREN, + [39622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 1, - anon_sym_RBRACE, - [40344] = 2, + ACTIONS(2723), 1, + anon_sym_GT, + [39629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_RBRACK, - [40351] = 2, + ACTIONS(2375), 1, + anon_sym_GT, + [39636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1443), 1, anon_sym_RBRACK, - [40358] = 2, - ACTIONS(1895), 1, - sym_comment, - ACTIONS(2756), 1, - sym_regex_pattern, - [40365] = 2, + [39643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2725), 1, anon_sym_GT, - [40372] = 2, + [39650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, - sym_identifier, - [40379] = 2, + ACTIONS(2727), 1, + anon_sym_GT, + [39657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, - sym_identifier, - [40386] = 2, + ACTIONS(2729), 1, + anon_sym_GT, + [39664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, - sym_identifier, - [40393] = 2, + ACTIONS(2731), 1, + anon_sym_GT, + [39671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_function, + ACTIONS(2733), 1, + anon_sym_GT, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(207)] = 0, - [SMALL_STATE(208)] = 87, - [SMALL_STATE(209)] = 160, - [SMALL_STATE(210)] = 233, - [SMALL_STATE(211)] = 320, - [SMALL_STATE(212)] = 406, - [SMALL_STATE(213)] = 492, - [SMALL_STATE(214)] = 582, - [SMALL_STATE(215)] = 670, - [SMALL_STATE(216)] = 748, - [SMALL_STATE(217)] = 836, - [SMALL_STATE(218)] = 906, - [SMALL_STATE(219)] = 976, - [SMALL_STATE(220)] = 1063, - [SMALL_STATE(221)] = 1151, - [SMALL_STATE(222)] = 1223, - [SMALL_STATE(223)] = 1307, - [SMALL_STATE(224)] = 1393, - [SMALL_STATE(225)] = 1462, - [SMALL_STATE(226)] = 1531, - [SMALL_STATE(227)] = 1618, - [SMALL_STATE(228)] = 1685, - [SMALL_STATE(229)] = 1752, - [SMALL_STATE(230)] = 1821, - [SMALL_STATE(231)] = 1890, - [SMALL_STATE(232)] = 1959, - [SMALL_STATE(233)] = 2030, - [SMALL_STATE(234)] = 2099, - [SMALL_STATE(235)] = 2166, - [SMALL_STATE(236)] = 2235, - [SMALL_STATE(237)] = 2302, - [SMALL_STATE(238)] = 2371, - [SMALL_STATE(239)] = 2440, - [SMALL_STATE(240)] = 2507, - [SMALL_STATE(241)] = 2574, - [SMALL_STATE(242)] = 2641, - [SMALL_STATE(243)] = 2708, - [SMALL_STATE(244)] = 2777, - [SMALL_STATE(245)] = 2843, - [SMALL_STATE(246)] = 2909, - [SMALL_STATE(247)] = 2975, - [SMALL_STATE(248)] = 3041, - [SMALL_STATE(249)] = 3107, - [SMALL_STATE(250)] = 3173, - [SMALL_STATE(251)] = 3239, - [SMALL_STATE(252)] = 3305, - [SMALL_STATE(253)] = 3371, - [SMALL_STATE(254)] = 3437, - [SMALL_STATE(255)] = 3503, - [SMALL_STATE(256)] = 3569, - [SMALL_STATE(257)] = 3635, - [SMALL_STATE(258)] = 3701, - [SMALL_STATE(259)] = 3767, - [SMALL_STATE(260)] = 3833, - [SMALL_STATE(261)] = 3899, - [SMALL_STATE(262)] = 3965, - [SMALL_STATE(263)] = 4031, - [SMALL_STATE(264)] = 4097, - [SMALL_STATE(265)] = 4163, - [SMALL_STATE(266)] = 4229, - [SMALL_STATE(267)] = 4295, - [SMALL_STATE(268)] = 4361, - [SMALL_STATE(269)] = 4427, - [SMALL_STATE(270)] = 4493, - [SMALL_STATE(271)] = 4559, - [SMALL_STATE(272)] = 4625, - [SMALL_STATE(273)] = 4691, - [SMALL_STATE(274)] = 4757, - [SMALL_STATE(275)] = 4823, - [SMALL_STATE(276)] = 4889, - [SMALL_STATE(277)] = 4955, - [SMALL_STATE(278)] = 5021, - [SMALL_STATE(279)] = 5087, - [SMALL_STATE(280)] = 5153, - [SMALL_STATE(281)] = 5219, - [SMALL_STATE(282)] = 5285, - [SMALL_STATE(283)] = 5351, - [SMALL_STATE(284)] = 5417, - [SMALL_STATE(285)] = 5483, - [SMALL_STATE(286)] = 5549, - [SMALL_STATE(287)] = 5615, - [SMALL_STATE(288)] = 5681, - [SMALL_STATE(289)] = 5747, - [SMALL_STATE(290)] = 5813, - [SMALL_STATE(291)] = 5879, - [SMALL_STATE(292)] = 5945, - [SMALL_STATE(293)] = 6011, - [SMALL_STATE(294)] = 6077, - [SMALL_STATE(295)] = 6143, - [SMALL_STATE(296)] = 6209, - [SMALL_STATE(297)] = 6275, - [SMALL_STATE(298)] = 6341, - [SMALL_STATE(299)] = 6407, - [SMALL_STATE(300)] = 6473, - [SMALL_STATE(301)] = 6539, - [SMALL_STATE(302)] = 6605, - [SMALL_STATE(303)] = 6671, - [SMALL_STATE(304)] = 6737, - [SMALL_STATE(305)] = 6803, - [SMALL_STATE(306)] = 6869, - [SMALL_STATE(307)] = 6935, - [SMALL_STATE(308)] = 7001, - [SMALL_STATE(309)] = 7067, - [SMALL_STATE(310)] = 7133, - [SMALL_STATE(311)] = 7199, - [SMALL_STATE(312)] = 7265, - [SMALL_STATE(313)] = 7331, - [SMALL_STATE(314)] = 7397, - [SMALL_STATE(315)] = 7463, - [SMALL_STATE(316)] = 7529, - [SMALL_STATE(317)] = 7595, - [SMALL_STATE(318)] = 7661, - [SMALL_STATE(319)] = 7727, - [SMALL_STATE(320)] = 7793, - [SMALL_STATE(321)] = 7859, - [SMALL_STATE(322)] = 7925, - [SMALL_STATE(323)] = 7991, - [SMALL_STATE(324)] = 8057, - [SMALL_STATE(325)] = 8123, - [SMALL_STATE(326)] = 8189, - [SMALL_STATE(327)] = 8255, - [SMALL_STATE(328)] = 8321, - [SMALL_STATE(329)] = 8387, - [SMALL_STATE(330)] = 8453, - [SMALL_STATE(331)] = 8519, - [SMALL_STATE(332)] = 8585, - [SMALL_STATE(333)] = 8666, - [SMALL_STATE(334)] = 8747, - [SMALL_STATE(335)] = 8828, - [SMALL_STATE(336)] = 8892, - [SMALL_STATE(337)] = 8956, - [SMALL_STATE(338)] = 9020, - [SMALL_STATE(339)] = 9084, - [SMALL_STATE(340)] = 9153, - [SMALL_STATE(341)] = 9220, - [SMALL_STATE(342)] = 9289, - [SMALL_STATE(343)] = 9358, - [SMALL_STATE(344)] = 9427, - [SMALL_STATE(345)] = 9489, - [SMALL_STATE(346)] = 9557, - [SMALL_STATE(347)] = 9625, - [SMALL_STATE(348)] = 9695, - [SMALL_STATE(349)] = 9757, - [SMALL_STATE(350)] = 9827, - [SMALL_STATE(351)] = 9897, - [SMALL_STATE(352)] = 9959, - [SMALL_STATE(353)] = 10029, - [SMALL_STATE(354)] = 10097, - [SMALL_STATE(355)] = 10169, - [SMALL_STATE(356)] = 10235, - [SMALL_STATE(357)] = 10307, - [SMALL_STATE(358)] = 10375, - [SMALL_STATE(359)] = 10437, - [SMALL_STATE(360)] = 10506, - [SMALL_STATE(361)] = 10575, - [SMALL_STATE(362)] = 10636, - [SMALL_STATE(363)] = 10701, - [SMALL_STATE(364)] = 10770, - [SMALL_STATE(365)] = 10831, - [SMALL_STATE(366)] = 10892, - [SMALL_STATE(367)] = 10953, - [SMALL_STATE(368)] = 11018, - [SMALL_STATE(369)] = 11084, - [SMALL_STATE(370)] = 11150, - [SMALL_STATE(371)] = 11220, - [SMALL_STATE(372)] = 11288, - [SMALL_STATE(373)] = 11356, - [SMALL_STATE(374)] = 11424, - [SMALL_STATE(375)] = 11494, - [SMALL_STATE(376)] = 11562, - [SMALL_STATE(377)] = 11631, - [SMALL_STATE(378)] = 11700, - [SMALL_STATE(379)] = 11758, - [SMALL_STATE(380)] = 11816, - [SMALL_STATE(381)] = 11882, - [SMALL_STATE(382)] = 11940, - [SMALL_STATE(383)] = 12008, - [SMALL_STATE(384)] = 12071, - [SMALL_STATE(385)] = 12124, - [SMALL_STATE(386)] = 12187, - [SMALL_STATE(387)] = 12250, - [SMALL_STATE(388)] = 12311, - [SMALL_STATE(389)] = 12397, - [SMALL_STATE(390)] = 12483, - [SMALL_STATE(391)] = 12569, - [SMALL_STATE(392)] = 12655, - [SMALL_STATE(393)] = 12705, - [SMALL_STATE(394)] = 12789, - [SMALL_STATE(395)] = 12839, - [SMALL_STATE(396)] = 12913, - [SMALL_STATE(397)] = 12983, - [SMALL_STATE(398)] = 13035, - [SMALL_STATE(399)] = 13121, - [SMALL_STATE(400)] = 13207, - [SMALL_STATE(401)] = 13265, - [SMALL_STATE(402)] = 13351, - [SMALL_STATE(403)] = 13403, - [SMALL_STATE(404)] = 13455, - [SMALL_STATE(405)] = 13541, - [SMALL_STATE(406)] = 13627, - [SMALL_STATE(407)] = 13691, - [SMALL_STATE(408)] = 13777, - [SMALL_STATE(409)] = 13865, - [SMALL_STATE(410)] = 13951, - [SMALL_STATE(411)] = 14037, - [SMALL_STATE(412)] = 14087, - [SMALL_STATE(413)] = 14163, - [SMALL_STATE(414)] = 14243, - [SMALL_STATE(415)] = 14329, - [SMALL_STATE(416)] = 14397, - [SMALL_STATE(417)] = 14444, - [SMALL_STATE(418)] = 14491, - [SMALL_STATE(419)] = 14538, - [SMALL_STATE(420)] = 14585, - [SMALL_STATE(421)] = 14632, - [SMALL_STATE(422)] = 14679, - [SMALL_STATE(423)] = 14726, - [SMALL_STATE(424)] = 14779, - [SMALL_STATE(425)] = 14826, - [SMALL_STATE(426)] = 14879, - [SMALL_STATE(427)] = 14926, - [SMALL_STATE(428)] = 15011, - [SMALL_STATE(429)] = 15058, - [SMALL_STATE(430)] = 15143, - [SMALL_STATE(431)] = 15190, - [SMALL_STATE(432)] = 15237, - [SMALL_STATE(433)] = 15300, - [SMALL_STATE(434)] = 15385, - [SMALL_STATE(435)] = 15432, - [SMALL_STATE(436)] = 15479, - [SMALL_STATE(437)] = 15526, - [SMALL_STATE(438)] = 15573, - [SMALL_STATE(439)] = 15620, - [SMALL_STATE(440)] = 15693, - [SMALL_STATE(441)] = 15740, - [SMALL_STATE(442)] = 15789, - [SMALL_STATE(443)] = 15858, - [SMALL_STATE(444)] = 15933, - [SMALL_STATE(445)] = 16012, - [SMALL_STATE(446)] = 16079, - [SMALL_STATE(447)] = 16140, - [SMALL_STATE(448)] = 16223, - [SMALL_STATE(449)] = 16308, - [SMALL_STATE(450)] = 16393, - [SMALL_STATE(451)] = 16478, - [SMALL_STATE(452)] = 16525, - [SMALL_STATE(453)] = 16572, - [SMALL_STATE(454)] = 16619, - [SMALL_STATE(455)] = 16666, - [SMALL_STATE(456)] = 16713, - [SMALL_STATE(457)] = 16760, - [SMALL_STATE(458)] = 16845, - [SMALL_STATE(459)] = 16892, - [SMALL_STATE(460)] = 16939, - [SMALL_STATE(461)] = 16986, - [SMALL_STATE(462)] = 17033, - [SMALL_STATE(463)] = 17080, - [SMALL_STATE(464)] = 17127, - [SMALL_STATE(465)] = 17174, - [SMALL_STATE(466)] = 17221, - [SMALL_STATE(467)] = 17268, - [SMALL_STATE(468)] = 17315, - [SMALL_STATE(469)] = 17362, - [SMALL_STATE(470)] = 17447, - [SMALL_STATE(471)] = 17496, - [SMALL_STATE(472)] = 17543, - [SMALL_STATE(473)] = 17590, - [SMALL_STATE(474)] = 17679, - [SMALL_STATE(475)] = 17726, - [SMALL_STATE(476)] = 17811, - [SMALL_STATE(477)] = 17860, - [SMALL_STATE(478)] = 17907, - [SMALL_STATE(479)] = 17954, - [SMALL_STATE(480)] = 18001, - [SMALL_STATE(481)] = 18086, - [SMALL_STATE(482)] = 18133, - [SMALL_STATE(483)] = 18222, - [SMALL_STATE(484)] = 18307, - [SMALL_STATE(485)] = 18354, - [SMALL_STATE(486)] = 18401, - [SMALL_STATE(487)] = 18448, - [SMALL_STATE(488)] = 18537, - [SMALL_STATE(489)] = 18598, - [SMALL_STATE(490)] = 18645, - [SMALL_STATE(491)] = 18692, - [SMALL_STATE(492)] = 18739, - [SMALL_STATE(493)] = 18786, - [SMALL_STATE(494)] = 18833, - [SMALL_STATE(495)] = 18880, - [SMALL_STATE(496)] = 18927, - [SMALL_STATE(497)] = 18988, - [SMALL_STATE(498)] = 19035, - [SMALL_STATE(499)] = 19120, - [SMALL_STATE(500)] = 19179, - [SMALL_STATE(501)] = 19226, - [SMALL_STATE(502)] = 19311, - [SMALL_STATE(503)] = 19358, - [SMALL_STATE(504)] = 19443, - [SMALL_STATE(505)] = 19490, - [SMALL_STATE(506)] = 19538, - [SMALL_STATE(507)] = 19626, - [SMALL_STATE(508)] = 19712, - [SMALL_STATE(509)] = 19762, - [SMALL_STATE(510)] = 19812, - [SMALL_STATE(511)] = 19896, - [SMALL_STATE(512)] = 19944, - [SMALL_STATE(513)] = 19994, - [SMALL_STATE(514)] = 20044, - [SMALL_STATE(515)] = 20094, - [SMALL_STATE(516)] = 20182, - [SMALL_STATE(517)] = 20230, - [SMALL_STATE(518)] = 20280, - [SMALL_STATE(519)] = 20336, - [SMALL_STATE(520)] = 20386, - [SMALL_STATE(521)] = 20436, - [SMALL_STATE(522)] = 20520, - [SMALL_STATE(523)] = 20606, - [SMALL_STATE(524)] = 20692, - [SMALL_STATE(525)] = 20742, - [SMALL_STATE(526)] = 20830, - [SMALL_STATE(527)] = 20918, - [SMALL_STATE(528)] = 20970, - [SMALL_STATE(529)] = 21022, - [SMALL_STATE(530)] = 21070, - [SMALL_STATE(531)] = 21154, - [SMALL_STATE(532)] = 21242, - [SMALL_STATE(533)] = 21294, - [SMALL_STATE(534)] = 21380, - [SMALL_STATE(535)] = 21425, - [SMALL_STATE(536)] = 21502, - [SMALL_STATE(537)] = 21585, - [SMALL_STATE(538)] = 21630, - [SMALL_STATE(539)] = 21675, - [SMALL_STATE(540)] = 21720, - [SMALL_STATE(541)] = 21765, - [SMALL_STATE(542)] = 21848, - [SMALL_STATE(543)] = 21931, - [SMALL_STATE(544)] = 21992, - [SMALL_STATE(545)] = 22063, - [SMALL_STATE(546)] = 22108, - [SMALL_STATE(547)] = 22159, - [SMALL_STATE(548)] = 22204, - [SMALL_STATE(549)] = 22249, - [SMALL_STATE(550)] = 22334, - [SMALL_STATE(551)] = 22379, - [SMALL_STATE(552)] = 22424, - [SMALL_STATE(553)] = 22469, - [SMALL_STATE(554)] = 22554, - [SMALL_STATE(555)] = 22599, - [SMALL_STATE(556)] = 22684, - [SMALL_STATE(557)] = 22729, - [SMALL_STATE(558)] = 22774, - [SMALL_STATE(559)] = 22857, - [SMALL_STATE(560)] = 22942, - [SMALL_STATE(561)] = 22987, - [SMALL_STATE(562)] = 23070, - [SMALL_STATE(563)] = 23153, - [SMALL_STATE(564)] = 23236, - [SMALL_STATE(565)] = 23285, - [SMALL_STATE(566)] = 23330, - [SMALL_STATE(567)] = 23375, - [SMALL_STATE(568)] = 23420, - [SMALL_STATE(569)] = 23505, - [SMALL_STATE(570)] = 23550, - [SMALL_STATE(571)] = 23595, - [SMALL_STATE(572)] = 23640, - [SMALL_STATE(573)] = 23725, - [SMALL_STATE(574)] = 23792, - [SMALL_STATE(575)] = 23875, - [SMALL_STATE(576)] = 23920, - [SMALL_STATE(577)] = 23993, - [SMALL_STATE(578)] = 24038, - [SMALL_STATE(579)] = 24123, - [SMALL_STATE(580)] = 24172, - [SMALL_STATE(581)] = 24217, - [SMALL_STATE(582)] = 24302, - [SMALL_STATE(583)] = 24347, - [SMALL_STATE(584)] = 24432, - [SMALL_STATE(585)] = 24515, - [SMALL_STATE(586)] = 24600, - [SMALL_STATE(587)] = 24645, - [SMALL_STATE(588)] = 24730, - [SMALL_STATE(589)] = 24775, - [SMALL_STATE(590)] = 24860, - [SMALL_STATE(591)] = 24905, - [SMALL_STATE(592)] = 24988, - [SMALL_STATE(593)] = 25033, - [SMALL_STATE(594)] = 25118, - [SMALL_STATE(595)] = 25163, - [SMALL_STATE(596)] = 25208, - [SMALL_STATE(597)] = 25253, - [SMALL_STATE(598)] = 25318, - [SMALL_STATE(599)] = 25363, - [SMALL_STATE(600)] = 25408, - [SMALL_STATE(601)] = 25489, - [SMALL_STATE(602)] = 25534, - [SMALL_STATE(603)] = 25619, - [SMALL_STATE(604)] = 25664, - [SMALL_STATE(605)] = 25709, - [SMALL_STATE(606)] = 25754, - [SMALL_STATE(607)] = 25799, - [SMALL_STATE(608)] = 25844, - [SMALL_STATE(609)] = 25889, - [SMALL_STATE(610)] = 25934, - [SMALL_STATE(611)] = 25979, - [SMALL_STATE(612)] = 26024, - [SMALL_STATE(613)] = 26069, - [SMALL_STATE(614)] = 26114, - [SMALL_STATE(615)] = 26159, - [SMALL_STATE(616)] = 26242, - [SMALL_STATE(617)] = 26325, - [SMALL_STATE(618)] = 26370, - [SMALL_STATE(619)] = 26453, - [SMALL_STATE(620)] = 26538, - [SMALL_STATE(621)] = 26583, - [SMALL_STATE(622)] = 26666, - [SMALL_STATE(623)] = 26749, - [SMALL_STATE(624)] = 26832, - [SMALL_STATE(625)] = 26877, - [SMALL_STATE(626)] = 26960, - [SMALL_STATE(627)] = 27045, - [SMALL_STATE(628)] = 27130, - [SMALL_STATE(629)] = 27175, - [SMALL_STATE(630)] = 27257, - [SMALL_STATE(631)] = 27339, - [SMALL_STATE(632)] = 27421, - [SMALL_STATE(633)] = 27503, - [SMALL_STATE(634)] = 27585, - [SMALL_STATE(635)] = 27635, - [SMALL_STATE(636)] = 27685, - [SMALL_STATE(637)] = 27735, - [SMALL_STATE(638)] = 27817, - [SMALL_STATE(639)] = 27866, - [SMALL_STATE(640)] = 27945, - [SMALL_STATE(641)] = 28024, - [SMALL_STATE(642)] = 28073, - [SMALL_STATE(643)] = 28122, - [SMALL_STATE(644)] = 28202, - [SMALL_STATE(645)] = 28282, - [SMALL_STATE(646)] = 28362, - [SMALL_STATE(647)] = 28442, - [SMALL_STATE(648)] = 28522, - [SMALL_STATE(649)] = 28602, - [SMALL_STATE(650)] = 28674, - [SMALL_STATE(651)] = 28728, - [SMALL_STATE(652)] = 28782, - [SMALL_STATE(653)] = 28831, - [SMALL_STATE(654)] = 28890, - [SMALL_STATE(655)] = 28943, - [SMALL_STATE(656)] = 28996, - [SMALL_STATE(657)] = 29051, - [SMALL_STATE(658)] = 29106, - [SMALL_STATE(659)] = 29159, - [SMALL_STATE(660)] = 29218, - [SMALL_STATE(661)] = 29277, - [SMALL_STATE(662)] = 29336, - [SMALL_STATE(663)] = 29395, - [SMALL_STATE(664)] = 29454, - [SMALL_STATE(665)] = 29513, - [SMALL_STATE(666)] = 29572, - [SMALL_STATE(667)] = 29627, - [SMALL_STATE(668)] = 29682, - [SMALL_STATE(669)] = 29735, - [SMALL_STATE(670)] = 29788, - [SMALL_STATE(671)] = 29843, - [SMALL_STATE(672)] = 29896, - [SMALL_STATE(673)] = 29951, - [SMALL_STATE(674)] = 29999, - [SMALL_STATE(675)] = 30047, - [SMALL_STATE(676)] = 30095, - [SMALL_STATE(677)] = 30143, - [SMALL_STATE(678)] = 30191, - [SMALL_STATE(679)] = 30239, - [SMALL_STATE(680)] = 30286, - [SMALL_STATE(681)] = 30331, - [SMALL_STATE(682)] = 30373, - [SMALL_STATE(683)] = 30415, - [SMALL_STATE(684)] = 30459, - [SMALL_STATE(685)] = 30499, - [SMALL_STATE(686)] = 30543, - [SMALL_STATE(687)] = 30583, - [SMALL_STATE(688)] = 30623, - [SMALL_STATE(689)] = 30677, - [SMALL_STATE(690)] = 30721, - [SMALL_STATE(691)] = 30756, - [SMALL_STATE(692)] = 30791, - [SMALL_STATE(693)] = 30830, - [SMALL_STATE(694)] = 30875, - [SMALL_STATE(695)] = 30912, - [SMALL_STATE(696)] = 30961, - [SMALL_STATE(697)] = 30999, - [SMALL_STATE(698)] = 31037, - [SMALL_STATE(699)] = 31079, - [SMALL_STATE(700)] = 31109, - [SMALL_STATE(701)] = 31147, - [SMALL_STATE(702)] = 31189, - [SMALL_STATE(703)] = 31212, - [SMALL_STATE(704)] = 31235, - [SMALL_STATE(705)] = 31258, - [SMALL_STATE(706)] = 31281, - [SMALL_STATE(707)] = 31318, - [SMALL_STATE(708)] = 31341, - [SMALL_STATE(709)] = 31364, - [SMALL_STATE(710)] = 31387, - [SMALL_STATE(711)] = 31410, - [SMALL_STATE(712)] = 31445, - [SMALL_STATE(713)] = 31466, - [SMALL_STATE(714)] = 31489, - [SMALL_STATE(715)] = 31510, - [SMALL_STATE(716)] = 31549, - [SMALL_STATE(717)] = 31578, - [SMALL_STATE(718)] = 31601, - [SMALL_STATE(719)] = 31624, - [SMALL_STATE(720)] = 31647, - [SMALL_STATE(721)] = 31668, - [SMALL_STATE(722)] = 31691, - [SMALL_STATE(723)] = 31714, - [SMALL_STATE(724)] = 31737, - [SMALL_STATE(725)] = 31760, - [SMALL_STATE(726)] = 31795, - [SMALL_STATE(727)] = 31818, - [SMALL_STATE(728)] = 31841, - [SMALL_STATE(729)] = 31882, - [SMALL_STATE(730)] = 31905, - [SMALL_STATE(731)] = 31944, - [SMALL_STATE(732)] = 31967, - [SMALL_STATE(733)] = 31990, - [SMALL_STATE(734)] = 32022, - [SMALL_STATE(735)] = 32054, - [SMALL_STATE(736)] = 32086, - [SMALL_STATE(737)] = 32118, - [SMALL_STATE(738)] = 32150, - [SMALL_STATE(739)] = 32182, - [SMALL_STATE(740)] = 32214, - [SMALL_STATE(741)] = 32246, - [SMALL_STATE(742)] = 32278, - [SMALL_STATE(743)] = 32310, - [SMALL_STATE(744)] = 32342, - [SMALL_STATE(745)] = 32366, - [SMALL_STATE(746)] = 32395, - [SMALL_STATE(747)] = 32424, - [SMALL_STATE(748)] = 32453, - [SMALL_STATE(749)] = 32474, - [SMALL_STATE(750)] = 32495, - [SMALL_STATE(751)] = 32516, - [SMALL_STATE(752)] = 32545, - [SMALL_STATE(753)] = 32574, - [SMALL_STATE(754)] = 32595, - [SMALL_STATE(755)] = 32624, - [SMALL_STATE(756)] = 32653, - [SMALL_STATE(757)] = 32688, - [SMALL_STATE(758)] = 32723, - [SMALL_STATE(759)] = 32758, - [SMALL_STATE(760)] = 32793, - [SMALL_STATE(761)] = 32819, - [SMALL_STATE(762)] = 32851, - [SMALL_STATE(763)] = 32883, - [SMALL_STATE(764)] = 32909, - [SMALL_STATE(765)] = 32941, - [SMALL_STATE(766)] = 32967, - [SMALL_STATE(767)] = 32993, - [SMALL_STATE(768)] = 33019, - [SMALL_STATE(769)] = 33045, - [SMALL_STATE(770)] = 33077, - [SMALL_STATE(771)] = 33103, - [SMALL_STATE(772)] = 33135, - [SMALL_STATE(773)] = 33161, - [SMALL_STATE(774)] = 33187, - [SMALL_STATE(775)] = 33213, - [SMALL_STATE(776)] = 33245, - [SMALL_STATE(777)] = 33277, - [SMALL_STATE(778)] = 33309, - [SMALL_STATE(779)] = 33332, - [SMALL_STATE(780)] = 33361, - [SMALL_STATE(781)] = 33384, - [SMALL_STATE(782)] = 33413, - [SMALL_STATE(783)] = 33436, - [SMALL_STATE(784)] = 33465, - [SMALL_STATE(785)] = 33494, - [SMALL_STATE(786)] = 33523, - [SMALL_STATE(787)] = 33546, - [SMALL_STATE(788)] = 33575, - [SMALL_STATE(789)] = 33598, - [SMALL_STATE(790)] = 33627, - [SMALL_STATE(791)] = 33650, - [SMALL_STATE(792)] = 33673, - [SMALL_STATE(793)] = 33702, - [SMALL_STATE(794)] = 33731, - [SMALL_STATE(795)] = 33760, - [SMALL_STATE(796)] = 33789, - [SMALL_STATE(797)] = 33818, - [SMALL_STATE(798)] = 33841, - [SMALL_STATE(799)] = 33870, - [SMALL_STATE(800)] = 33899, - [SMALL_STATE(801)] = 33928, - [SMALL_STATE(802)] = 33951, - [SMALL_STATE(803)] = 33980, - [SMALL_STATE(804)] = 34009, - [SMALL_STATE(805)] = 34038, - [SMALL_STATE(806)] = 34067, - [SMALL_STATE(807)] = 34096, - [SMALL_STATE(808)] = 34125, - [SMALL_STATE(809)] = 34146, - [SMALL_STATE(810)] = 34159, - [SMALL_STATE(811)] = 34172, - [SMALL_STATE(812)] = 34185, - [SMALL_STATE(813)] = 34198, - [SMALL_STATE(814)] = 34221, - [SMALL_STATE(815)] = 34242, - [SMALL_STATE(816)] = 34261, - [SMALL_STATE(817)] = 34284, - [SMALL_STATE(818)] = 34307, - [SMALL_STATE(819)] = 34330, - [SMALL_STATE(820)] = 34353, - [SMALL_STATE(821)] = 34376, - [SMALL_STATE(822)] = 34397, - [SMALL_STATE(823)] = 34410, - [SMALL_STATE(824)] = 34423, - [SMALL_STATE(825)] = 34444, - [SMALL_STATE(826)] = 34465, - [SMALL_STATE(827)] = 34478, - [SMALL_STATE(828)] = 34491, - [SMALL_STATE(829)] = 34510, - [SMALL_STATE(830)] = 34532, - [SMALL_STATE(831)] = 34550, - [SMALL_STATE(832)] = 34568, - [SMALL_STATE(833)] = 34588, - [SMALL_STATE(834)] = 34600, - [SMALL_STATE(835)] = 34622, - [SMALL_STATE(836)] = 34644, - [SMALL_STATE(837)] = 34666, - [SMALL_STATE(838)] = 34678, - [SMALL_STATE(839)] = 34690, - [SMALL_STATE(840)] = 34708, - [SMALL_STATE(841)] = 34730, - [SMALL_STATE(842)] = 34742, - [SMALL_STATE(843)] = 34764, - [SMALL_STATE(844)] = 34776, - [SMALL_STATE(845)] = 34794, - [SMALL_STATE(846)] = 34806, - [SMALL_STATE(847)] = 34824, - [SMALL_STATE(848)] = 34846, - [SMALL_STATE(849)] = 34868, - [SMALL_STATE(850)] = 34888, - [SMALL_STATE(851)] = 34906, - [SMALL_STATE(852)] = 34922, - [SMALL_STATE(853)] = 34934, - [SMALL_STATE(854)] = 34952, - [SMALL_STATE(855)] = 34970, - [SMALL_STATE(856)] = 34984, - [SMALL_STATE(857)] = 35006, - [SMALL_STATE(858)] = 35020, - [SMALL_STATE(859)] = 35042, - [SMALL_STATE(860)] = 35054, - [SMALL_STATE(861)] = 35076, - [SMALL_STATE(862)] = 35098, - [SMALL_STATE(863)] = 35116, - [SMALL_STATE(864)] = 35134, - [SMALL_STATE(865)] = 35152, - [SMALL_STATE(866)] = 35163, - [SMALL_STATE(867)] = 35182, - [SMALL_STATE(868)] = 35201, - [SMALL_STATE(869)] = 35216, - [SMALL_STATE(870)] = 35229, - [SMALL_STATE(871)] = 35242, - [SMALL_STATE(872)] = 35261, - [SMALL_STATE(873)] = 35274, - [SMALL_STATE(874)] = 35293, - [SMALL_STATE(875)] = 35312, - [SMALL_STATE(876)] = 35325, - [SMALL_STATE(877)] = 35344, - [SMALL_STATE(878)] = 35357, - [SMALL_STATE(879)] = 35370, - [SMALL_STATE(880)] = 35383, - [SMALL_STATE(881)] = 35402, - [SMALL_STATE(882)] = 35415, - [SMALL_STATE(883)] = 35434, - [SMALL_STATE(884)] = 35447, - [SMALL_STATE(885)] = 35466, - [SMALL_STATE(886)] = 35479, - [SMALL_STATE(887)] = 35492, - [SMALL_STATE(888)] = 35511, - [SMALL_STATE(889)] = 35530, - [SMALL_STATE(890)] = 35543, - [SMALL_STATE(891)] = 35554, - [SMALL_STATE(892)] = 35573, - [SMALL_STATE(893)] = 35592, - [SMALL_STATE(894)] = 35611, - [SMALL_STATE(895)] = 35630, - [SMALL_STATE(896)] = 35641, - [SMALL_STATE(897)] = 35654, - [SMALL_STATE(898)] = 35667, - [SMALL_STATE(899)] = 35680, - [SMALL_STATE(900)] = 35699, - [SMALL_STATE(901)] = 35712, - [SMALL_STATE(902)] = 35727, - [SMALL_STATE(903)] = 35740, - [SMALL_STATE(904)] = 35756, - [SMALL_STATE(905)] = 35772, - [SMALL_STATE(906)] = 35786, - [SMALL_STATE(907)] = 35800, - [SMALL_STATE(908)] = 35814, - [SMALL_STATE(909)] = 35830, - [SMALL_STATE(910)] = 35846, - [SMALL_STATE(911)] = 35860, - [SMALL_STATE(912)] = 35876, - [SMALL_STATE(913)] = 35890, - [SMALL_STATE(914)] = 35906, - [SMALL_STATE(915)] = 35922, - [SMALL_STATE(916)] = 35936, - [SMALL_STATE(917)] = 35952, - [SMALL_STATE(918)] = 35966, - [SMALL_STATE(919)] = 35982, - [SMALL_STATE(920)] = 35994, - [SMALL_STATE(921)] = 36010, - [SMALL_STATE(922)] = 36026, - [SMALL_STATE(923)] = 36042, - [SMALL_STATE(924)] = 36052, - [SMALL_STATE(925)] = 36068, - [SMALL_STATE(926)] = 36084, - [SMALL_STATE(927)] = 36100, - [SMALL_STATE(928)] = 36114, - [SMALL_STATE(929)] = 36126, - [SMALL_STATE(930)] = 36142, - [SMALL_STATE(931)] = 36158, - [SMALL_STATE(932)] = 36174, - [SMALL_STATE(933)] = 36190, - [SMALL_STATE(934)] = 36206, - [SMALL_STATE(935)] = 36220, - [SMALL_STATE(936)] = 36236, - [SMALL_STATE(937)] = 36250, - [SMALL_STATE(938)] = 36264, - [SMALL_STATE(939)] = 36280, - [SMALL_STATE(940)] = 36296, - [SMALL_STATE(941)] = 36310, - [SMALL_STATE(942)] = 36324, - [SMALL_STATE(943)] = 36338, - [SMALL_STATE(944)] = 36352, - [SMALL_STATE(945)] = 36368, - [SMALL_STATE(946)] = 36382, - [SMALL_STATE(947)] = 36396, - [SMALL_STATE(948)] = 36410, - [SMALL_STATE(949)] = 36424, - [SMALL_STATE(950)] = 36438, - [SMALL_STATE(951)] = 36452, - [SMALL_STATE(952)] = 36462, - [SMALL_STATE(953)] = 36478, - [SMALL_STATE(954)] = 36494, - [SMALL_STATE(955)] = 36510, - [SMALL_STATE(956)] = 36526, - [SMALL_STATE(957)] = 36542, - [SMALL_STATE(958)] = 36558, - [SMALL_STATE(959)] = 36568, - [SMALL_STATE(960)] = 36582, - [SMALL_STATE(961)] = 36598, - [SMALL_STATE(962)] = 36614, - [SMALL_STATE(963)] = 36630, - [SMALL_STATE(964)] = 36644, - [SMALL_STATE(965)] = 36660, - [SMALL_STATE(966)] = 36676, - [SMALL_STATE(967)] = 36686, - [SMALL_STATE(968)] = 36695, - [SMALL_STATE(969)] = 36708, - [SMALL_STATE(970)] = 36717, - [SMALL_STATE(971)] = 36730, - [SMALL_STATE(972)] = 36739, - [SMALL_STATE(973)] = 36748, - [SMALL_STATE(974)] = 36757, - [SMALL_STATE(975)] = 36766, - [SMALL_STATE(976)] = 36777, - [SMALL_STATE(977)] = 36790, - [SMALL_STATE(978)] = 36799, - [SMALL_STATE(979)] = 36812, - [SMALL_STATE(980)] = 36821, - [SMALL_STATE(981)] = 36830, - [SMALL_STATE(982)] = 36839, - [SMALL_STATE(983)] = 36848, - [SMALL_STATE(984)] = 36857, - [SMALL_STATE(985)] = 36866, - [SMALL_STATE(986)] = 36877, - [SMALL_STATE(987)] = 36890, - [SMALL_STATE(988)] = 36903, - [SMALL_STATE(989)] = 36912, - [SMALL_STATE(990)] = 36923, - [SMALL_STATE(991)] = 36936, - [SMALL_STATE(992)] = 36947, - [SMALL_STATE(993)] = 36958, - [SMALL_STATE(994)] = 36971, - [SMALL_STATE(995)] = 36984, - [SMALL_STATE(996)] = 36993, - [SMALL_STATE(997)] = 37006, - [SMALL_STATE(998)] = 37019, - [SMALL_STATE(999)] = 37032, - [SMALL_STATE(1000)] = 37045, - [SMALL_STATE(1001)] = 37054, - [SMALL_STATE(1002)] = 37067, - [SMALL_STATE(1003)] = 37080, - [SMALL_STATE(1004)] = 37089, - [SMALL_STATE(1005)] = 37102, - [SMALL_STATE(1006)] = 37115, - [SMALL_STATE(1007)] = 37128, - [SMALL_STATE(1008)] = 37137, - [SMALL_STATE(1009)] = 37146, - [SMALL_STATE(1010)] = 37159, - [SMALL_STATE(1011)] = 37172, - [SMALL_STATE(1012)] = 37183, - [SMALL_STATE(1013)] = 37196, - [SMALL_STATE(1014)] = 37209, - [SMALL_STATE(1015)] = 37222, - [SMALL_STATE(1016)] = 37235, - [SMALL_STATE(1017)] = 37248, - [SMALL_STATE(1018)] = 37261, - [SMALL_STATE(1019)] = 37274, - [SMALL_STATE(1020)] = 37287, - [SMALL_STATE(1021)] = 37296, - [SMALL_STATE(1022)] = 37309, - [SMALL_STATE(1023)] = 37318, - [SMALL_STATE(1024)] = 37331, - [SMALL_STATE(1025)] = 37344, - [SMALL_STATE(1026)] = 37357, - [SMALL_STATE(1027)] = 37370, - [SMALL_STATE(1028)] = 37381, - [SMALL_STATE(1029)] = 37394, - [SMALL_STATE(1030)] = 37407, - [SMALL_STATE(1031)] = 37420, - [SMALL_STATE(1032)] = 37433, - [SMALL_STATE(1033)] = 37446, - [SMALL_STATE(1034)] = 37459, - [SMALL_STATE(1035)] = 37472, - [SMALL_STATE(1036)] = 37485, - [SMALL_STATE(1037)] = 37498, - [SMALL_STATE(1038)] = 37511, - [SMALL_STATE(1039)] = 37520, - [SMALL_STATE(1040)] = 37533, - [SMALL_STATE(1041)] = 37546, - [SMALL_STATE(1042)] = 37559, - [SMALL_STATE(1043)] = 37572, - [SMALL_STATE(1044)] = 37585, - [SMALL_STATE(1045)] = 37598, - [SMALL_STATE(1046)] = 37609, - [SMALL_STATE(1047)] = 37622, - [SMALL_STATE(1048)] = 37635, - [SMALL_STATE(1049)] = 37648, - [SMALL_STATE(1050)] = 37661, - [SMALL_STATE(1051)] = 37674, - [SMALL_STATE(1052)] = 37687, - [SMALL_STATE(1053)] = 37700, - [SMALL_STATE(1054)] = 37709, - [SMALL_STATE(1055)] = 37722, - [SMALL_STATE(1056)] = 37731, - [SMALL_STATE(1057)] = 37744, - [SMALL_STATE(1058)] = 37757, - [SMALL_STATE(1059)] = 37770, - [SMALL_STATE(1060)] = 37783, - [SMALL_STATE(1061)] = 37796, - [SMALL_STATE(1062)] = 37809, - [SMALL_STATE(1063)] = 37822, - [SMALL_STATE(1064)] = 37835, - [SMALL_STATE(1065)] = 37844, - [SMALL_STATE(1066)] = 37857, - [SMALL_STATE(1067)] = 37866, - [SMALL_STATE(1068)] = 37877, - [SMALL_STATE(1069)] = 37888, - [SMALL_STATE(1070)] = 37901, - [SMALL_STATE(1071)] = 37910, - [SMALL_STATE(1072)] = 37923, - [SMALL_STATE(1073)] = 37936, - [SMALL_STATE(1074)] = 37949, - [SMALL_STATE(1075)] = 37959, - [SMALL_STATE(1076)] = 37969, - [SMALL_STATE(1077)] = 37979, - [SMALL_STATE(1078)] = 37989, - [SMALL_STATE(1079)] = 37997, - [SMALL_STATE(1080)] = 38007, - [SMALL_STATE(1081)] = 38017, - [SMALL_STATE(1082)] = 38027, - [SMALL_STATE(1083)] = 38037, - [SMALL_STATE(1084)] = 38047, - [SMALL_STATE(1085)] = 38057, - [SMALL_STATE(1086)] = 38067, - [SMALL_STATE(1087)] = 38077, - [SMALL_STATE(1088)] = 38087, - [SMALL_STATE(1089)] = 38097, - [SMALL_STATE(1090)] = 38107, - [SMALL_STATE(1091)] = 38117, - [SMALL_STATE(1092)] = 38125, - [SMALL_STATE(1093)] = 38135, - [SMALL_STATE(1094)] = 38145, - [SMALL_STATE(1095)] = 38155, - [SMALL_STATE(1096)] = 38165, - [SMALL_STATE(1097)] = 38175, - [SMALL_STATE(1098)] = 38185, - [SMALL_STATE(1099)] = 38195, - [SMALL_STATE(1100)] = 38205, - [SMALL_STATE(1101)] = 38215, - [SMALL_STATE(1102)] = 38225, - [SMALL_STATE(1103)] = 38235, - [SMALL_STATE(1104)] = 38245, - [SMALL_STATE(1105)] = 38255, - [SMALL_STATE(1106)] = 38265, - [SMALL_STATE(1107)] = 38275, - [SMALL_STATE(1108)] = 38285, - [SMALL_STATE(1109)] = 38295, - [SMALL_STATE(1110)] = 38305, - [SMALL_STATE(1111)] = 38313, - [SMALL_STATE(1112)] = 38323, - [SMALL_STATE(1113)] = 38333, - [SMALL_STATE(1114)] = 38343, - [SMALL_STATE(1115)] = 38353, - [SMALL_STATE(1116)] = 38363, - [SMALL_STATE(1117)] = 38373, - [SMALL_STATE(1118)] = 38383, - [SMALL_STATE(1119)] = 38393, - [SMALL_STATE(1120)] = 38403, - [SMALL_STATE(1121)] = 38413, - [SMALL_STATE(1122)] = 38423, - [SMALL_STATE(1123)] = 38433, - [SMALL_STATE(1124)] = 38443, - [SMALL_STATE(1125)] = 38453, - [SMALL_STATE(1126)] = 38463, - [SMALL_STATE(1127)] = 38473, - [SMALL_STATE(1128)] = 38483, - [SMALL_STATE(1129)] = 38491, - [SMALL_STATE(1130)] = 38501, - [SMALL_STATE(1131)] = 38511, - [SMALL_STATE(1132)] = 38521, - [SMALL_STATE(1133)] = 38531, - [SMALL_STATE(1134)] = 38541, - [SMALL_STATE(1135)] = 38551, - [SMALL_STATE(1136)] = 38561, - [SMALL_STATE(1137)] = 38571, - [SMALL_STATE(1138)] = 38581, - [SMALL_STATE(1139)] = 38591, - [SMALL_STATE(1140)] = 38601, - [SMALL_STATE(1141)] = 38609, - [SMALL_STATE(1142)] = 38619, - [SMALL_STATE(1143)] = 38627, - [SMALL_STATE(1144)] = 38637, - [SMALL_STATE(1145)] = 38647, - [SMALL_STATE(1146)] = 38657, - [SMALL_STATE(1147)] = 38665, - [SMALL_STATE(1148)] = 38675, - [SMALL_STATE(1149)] = 38685, - [SMALL_STATE(1150)] = 38695, - [SMALL_STATE(1151)] = 38705, - [SMALL_STATE(1152)] = 38715, - [SMALL_STATE(1153)] = 38725, - [SMALL_STATE(1154)] = 38735, - [SMALL_STATE(1155)] = 38745, - [SMALL_STATE(1156)] = 38755, - [SMALL_STATE(1157)] = 38763, - [SMALL_STATE(1158)] = 38773, - [SMALL_STATE(1159)] = 38783, - [SMALL_STATE(1160)] = 38793, - [SMALL_STATE(1161)] = 38803, - [SMALL_STATE(1162)] = 38813, - [SMALL_STATE(1163)] = 38823, - [SMALL_STATE(1164)] = 38831, - [SMALL_STATE(1165)] = 38841, - [SMALL_STATE(1166)] = 38849, - [SMALL_STATE(1167)] = 38859, - [SMALL_STATE(1168)] = 38869, - [SMALL_STATE(1169)] = 38879, - [SMALL_STATE(1170)] = 38889, - [SMALL_STATE(1171)] = 38899, - [SMALL_STATE(1172)] = 38909, - [SMALL_STATE(1173)] = 38917, - [SMALL_STATE(1174)] = 38925, - [SMALL_STATE(1175)] = 38935, - [SMALL_STATE(1176)] = 38945, - [SMALL_STATE(1177)] = 38955, - [SMALL_STATE(1178)] = 38963, - [SMALL_STATE(1179)] = 38973, - [SMALL_STATE(1180)] = 38981, - [SMALL_STATE(1181)] = 38989, - [SMALL_STATE(1182)] = 38999, - [SMALL_STATE(1183)] = 39009, - [SMALL_STATE(1184)] = 39019, - [SMALL_STATE(1185)] = 39027, - [SMALL_STATE(1186)] = 39037, - [SMALL_STATE(1187)] = 39047, - [SMALL_STATE(1188)] = 39057, - [SMALL_STATE(1189)] = 39065, - [SMALL_STATE(1190)] = 39075, - [SMALL_STATE(1191)] = 39085, - [SMALL_STATE(1192)] = 39095, - [SMALL_STATE(1193)] = 39103, - [SMALL_STATE(1194)] = 39113, - [SMALL_STATE(1195)] = 39123, - [SMALL_STATE(1196)] = 39133, - [SMALL_STATE(1197)] = 39143, - [SMALL_STATE(1198)] = 39153, - [SMALL_STATE(1199)] = 39161, - [SMALL_STATE(1200)] = 39171, - [SMALL_STATE(1201)] = 39181, - [SMALL_STATE(1202)] = 39191, - [SMALL_STATE(1203)] = 39201, - [SMALL_STATE(1204)] = 39211, - [SMALL_STATE(1205)] = 39221, - [SMALL_STATE(1206)] = 39231, - [SMALL_STATE(1207)] = 39241, - [SMALL_STATE(1208)] = 39251, - [SMALL_STATE(1209)] = 39259, - [SMALL_STATE(1210)] = 39267, - [SMALL_STATE(1211)] = 39277, - [SMALL_STATE(1212)] = 39287, - [SMALL_STATE(1213)] = 39297, - [SMALL_STATE(1214)] = 39307, - [SMALL_STATE(1215)] = 39317, - [SMALL_STATE(1216)] = 39327, - [SMALL_STATE(1217)] = 39337, - [SMALL_STATE(1218)] = 39347, - [SMALL_STATE(1219)] = 39357, - [SMALL_STATE(1220)] = 39367, - [SMALL_STATE(1221)] = 39377, - [SMALL_STATE(1222)] = 39387, - [SMALL_STATE(1223)] = 39397, - [SMALL_STATE(1224)] = 39407, - [SMALL_STATE(1225)] = 39417, - [SMALL_STATE(1226)] = 39427, - [SMALL_STATE(1227)] = 39437, - [SMALL_STATE(1228)] = 39445, - [SMALL_STATE(1229)] = 39455, - [SMALL_STATE(1230)] = 39465, - [SMALL_STATE(1231)] = 39475, - [SMALL_STATE(1232)] = 39485, - [SMALL_STATE(1233)] = 39495, - [SMALL_STATE(1234)] = 39505, - [SMALL_STATE(1235)] = 39513, - [SMALL_STATE(1236)] = 39521, - [SMALL_STATE(1237)] = 39529, - [SMALL_STATE(1238)] = 39539, - [SMALL_STATE(1239)] = 39549, - [SMALL_STATE(1240)] = 39557, - [SMALL_STATE(1241)] = 39567, - [SMALL_STATE(1242)] = 39577, - [SMALL_STATE(1243)] = 39587, - [SMALL_STATE(1244)] = 39597, - [SMALL_STATE(1245)] = 39607, - [SMALL_STATE(1246)] = 39617, - [SMALL_STATE(1247)] = 39625, - [SMALL_STATE(1248)] = 39635, - [SMALL_STATE(1249)] = 39645, - [SMALL_STATE(1250)] = 39655, - [SMALL_STATE(1251)] = 39665, - [SMALL_STATE(1252)] = 39672, - [SMALL_STATE(1253)] = 39679, - [SMALL_STATE(1254)] = 39686, - [SMALL_STATE(1255)] = 39693, - [SMALL_STATE(1256)] = 39700, - [SMALL_STATE(1257)] = 39707, - [SMALL_STATE(1258)] = 39714, - [SMALL_STATE(1259)] = 39721, - [SMALL_STATE(1260)] = 39728, - [SMALL_STATE(1261)] = 39735, - [SMALL_STATE(1262)] = 39742, - [SMALL_STATE(1263)] = 39749, - [SMALL_STATE(1264)] = 39756, - [SMALL_STATE(1265)] = 39763, - [SMALL_STATE(1266)] = 39770, - [SMALL_STATE(1267)] = 39777, - [SMALL_STATE(1268)] = 39784, - [SMALL_STATE(1269)] = 39791, - [SMALL_STATE(1270)] = 39798, - [SMALL_STATE(1271)] = 39805, - [SMALL_STATE(1272)] = 39812, - [SMALL_STATE(1273)] = 39819, - [SMALL_STATE(1274)] = 39826, - [SMALL_STATE(1275)] = 39833, - [SMALL_STATE(1276)] = 39840, - [SMALL_STATE(1277)] = 39847, - [SMALL_STATE(1278)] = 39854, - [SMALL_STATE(1279)] = 39861, - [SMALL_STATE(1280)] = 39868, - [SMALL_STATE(1281)] = 39875, - [SMALL_STATE(1282)] = 39882, - [SMALL_STATE(1283)] = 39889, - [SMALL_STATE(1284)] = 39896, - [SMALL_STATE(1285)] = 39903, - [SMALL_STATE(1286)] = 39910, - [SMALL_STATE(1287)] = 39917, - [SMALL_STATE(1288)] = 39924, - [SMALL_STATE(1289)] = 39931, - [SMALL_STATE(1290)] = 39938, - [SMALL_STATE(1291)] = 39945, - [SMALL_STATE(1292)] = 39952, - [SMALL_STATE(1293)] = 39959, - [SMALL_STATE(1294)] = 39966, - [SMALL_STATE(1295)] = 39973, - [SMALL_STATE(1296)] = 39980, - [SMALL_STATE(1297)] = 39987, - [SMALL_STATE(1298)] = 39994, - [SMALL_STATE(1299)] = 40001, - [SMALL_STATE(1300)] = 40008, - [SMALL_STATE(1301)] = 40015, - [SMALL_STATE(1302)] = 40022, - [SMALL_STATE(1303)] = 40029, - [SMALL_STATE(1304)] = 40036, - [SMALL_STATE(1305)] = 40043, - [SMALL_STATE(1306)] = 40050, - [SMALL_STATE(1307)] = 40057, - [SMALL_STATE(1308)] = 40064, - [SMALL_STATE(1309)] = 40071, - [SMALL_STATE(1310)] = 40078, - [SMALL_STATE(1311)] = 40085, - [SMALL_STATE(1312)] = 40092, - [SMALL_STATE(1313)] = 40099, - [SMALL_STATE(1314)] = 40106, - [SMALL_STATE(1315)] = 40113, - [SMALL_STATE(1316)] = 40120, - [SMALL_STATE(1317)] = 40127, - [SMALL_STATE(1318)] = 40134, - [SMALL_STATE(1319)] = 40141, - [SMALL_STATE(1320)] = 40148, - [SMALL_STATE(1321)] = 40155, - [SMALL_STATE(1322)] = 40162, - [SMALL_STATE(1323)] = 40169, - [SMALL_STATE(1324)] = 40176, - [SMALL_STATE(1325)] = 40183, - [SMALL_STATE(1326)] = 40190, - [SMALL_STATE(1327)] = 40197, - [SMALL_STATE(1328)] = 40204, - [SMALL_STATE(1329)] = 40211, - [SMALL_STATE(1330)] = 40218, - [SMALL_STATE(1331)] = 40225, - [SMALL_STATE(1332)] = 40232, - [SMALL_STATE(1333)] = 40239, - [SMALL_STATE(1334)] = 40246, - [SMALL_STATE(1335)] = 40253, - [SMALL_STATE(1336)] = 40260, - [SMALL_STATE(1337)] = 40267, - [SMALL_STATE(1338)] = 40274, - [SMALL_STATE(1339)] = 40281, - [SMALL_STATE(1340)] = 40288, - [SMALL_STATE(1341)] = 40295, - [SMALL_STATE(1342)] = 40302, - [SMALL_STATE(1343)] = 40309, - [SMALL_STATE(1344)] = 40316, - [SMALL_STATE(1345)] = 40323, - [SMALL_STATE(1346)] = 40330, - [SMALL_STATE(1347)] = 40337, - [SMALL_STATE(1348)] = 40344, - [SMALL_STATE(1349)] = 40351, - [SMALL_STATE(1350)] = 40358, - [SMALL_STATE(1351)] = 40365, - [SMALL_STATE(1352)] = 40372, - [SMALL_STATE(1353)] = 40379, - [SMALL_STATE(1354)] = 40386, - [SMALL_STATE(1355)] = 40393, + [SMALL_STATE(208)] = 0, + [SMALL_STATE(209)] = 73, + [SMALL_STATE(210)] = 160, + [SMALL_STATE(211)] = 233, + [SMALL_STATE(212)] = 320, + [SMALL_STATE(213)] = 406, + [SMALL_STATE(214)] = 484, + [SMALL_STATE(215)] = 572, + [SMALL_STATE(216)] = 642, + [SMALL_STATE(217)] = 732, + [SMALL_STATE(218)] = 818, + [SMALL_STATE(219)] = 906, + [SMALL_STATE(220)] = 976, + [SMALL_STATE(221)] = 1063, + [SMALL_STATE(222)] = 1151, + [SMALL_STATE(223)] = 1223, + [SMALL_STATE(224)] = 1307, + [SMALL_STATE(225)] = 1391, + [SMALL_STATE(226)] = 1475, + [SMALL_STATE(227)] = 1561, + [SMALL_STATE(228)] = 1628, + [SMALL_STATE(229)] = 1695, + [SMALL_STATE(230)] = 1766, + [SMALL_STATE(231)] = 1833, + [SMALL_STATE(232)] = 1900, + [SMALL_STATE(233)] = 1987, + [SMALL_STATE(234)] = 2053, + [SMALL_STATE(235)] = 2119, + [SMALL_STATE(236)] = 2185, + [SMALL_STATE(237)] = 2251, + [SMALL_STATE(238)] = 2317, + [SMALL_STATE(239)] = 2383, + [SMALL_STATE(240)] = 2449, + [SMALL_STATE(241)] = 2515, + [SMALL_STATE(242)] = 2581, + [SMALL_STATE(243)] = 2647, + [SMALL_STATE(244)] = 2713, + [SMALL_STATE(245)] = 2779, + [SMALL_STATE(246)] = 2845, + [SMALL_STATE(247)] = 2911, + [SMALL_STATE(248)] = 2977, + [SMALL_STATE(249)] = 3043, + [SMALL_STATE(250)] = 3109, + [SMALL_STATE(251)] = 3175, + [SMALL_STATE(252)] = 3241, + [SMALL_STATE(253)] = 3307, + [SMALL_STATE(254)] = 3373, + [SMALL_STATE(255)] = 3439, + [SMALL_STATE(256)] = 3505, + [SMALL_STATE(257)] = 3571, + [SMALL_STATE(258)] = 3637, + [SMALL_STATE(259)] = 3703, + [SMALL_STATE(260)] = 3769, + [SMALL_STATE(261)] = 3835, + [SMALL_STATE(262)] = 3901, + [SMALL_STATE(263)] = 3967, + [SMALL_STATE(264)] = 4033, + [SMALL_STATE(265)] = 4099, + [SMALL_STATE(266)] = 4165, + [SMALL_STATE(267)] = 4231, + [SMALL_STATE(268)] = 4297, + [SMALL_STATE(269)] = 4363, + [SMALL_STATE(270)] = 4429, + [SMALL_STATE(271)] = 4495, + [SMALL_STATE(272)] = 4561, + [SMALL_STATE(273)] = 4627, + [SMALL_STATE(274)] = 4693, + [SMALL_STATE(275)] = 4759, + [SMALL_STATE(276)] = 4825, + [SMALL_STATE(277)] = 4891, + [SMALL_STATE(278)] = 4957, + [SMALL_STATE(279)] = 5023, + [SMALL_STATE(280)] = 5089, + [SMALL_STATE(281)] = 5155, + [SMALL_STATE(282)] = 5221, + [SMALL_STATE(283)] = 5287, + [SMALL_STATE(284)] = 5353, + [SMALL_STATE(285)] = 5419, + [SMALL_STATE(286)] = 5485, + [SMALL_STATE(287)] = 5551, + [SMALL_STATE(288)] = 5617, + [SMALL_STATE(289)] = 5683, + [SMALL_STATE(290)] = 5749, + [SMALL_STATE(291)] = 5815, + [SMALL_STATE(292)] = 5881, + [SMALL_STATE(293)] = 5947, + [SMALL_STATE(294)] = 6013, + [SMALL_STATE(295)] = 6079, + [SMALL_STATE(296)] = 6145, + [SMALL_STATE(297)] = 6211, + [SMALL_STATE(298)] = 6277, + [SMALL_STATE(299)] = 6343, + [SMALL_STATE(300)] = 6409, + [SMALL_STATE(301)] = 6475, + [SMALL_STATE(302)] = 6541, + [SMALL_STATE(303)] = 6607, + [SMALL_STATE(304)] = 6673, + [SMALL_STATE(305)] = 6739, + [SMALL_STATE(306)] = 6805, + [SMALL_STATE(307)] = 6871, + [SMALL_STATE(308)] = 6937, + [SMALL_STATE(309)] = 7003, + [SMALL_STATE(310)] = 7069, + [SMALL_STATE(311)] = 7135, + [SMALL_STATE(312)] = 7201, + [SMALL_STATE(313)] = 7267, + [SMALL_STATE(314)] = 7333, + [SMALL_STATE(315)] = 7399, + [SMALL_STATE(316)] = 7465, + [SMALL_STATE(317)] = 7531, + [SMALL_STATE(318)] = 7597, + [SMALL_STATE(319)] = 7663, + [SMALL_STATE(320)] = 7729, + [SMALL_STATE(321)] = 7795, + [SMALL_STATE(322)] = 7861, + [SMALL_STATE(323)] = 7927, + [SMALL_STATE(324)] = 7993, + [SMALL_STATE(325)] = 8059, + [SMALL_STATE(326)] = 8125, + [SMALL_STATE(327)] = 8206, + [SMALL_STATE(328)] = 8287, + [SMALL_STATE(329)] = 8368, + [SMALL_STATE(330)] = 8432, + [SMALL_STATE(331)] = 8496, + [SMALL_STATE(332)] = 8560, + [SMALL_STATE(333)] = 8624, + [SMALL_STATE(334)] = 8693, + [SMALL_STATE(335)] = 8760, + [SMALL_STATE(336)] = 8829, + [SMALL_STATE(337)] = 8898, + [SMALL_STATE(338)] = 8967, + [SMALL_STATE(339)] = 9035, + [SMALL_STATE(340)] = 9103, + [SMALL_STATE(341)] = 9175, + [SMALL_STATE(342)] = 9243, + [SMALL_STATE(343)] = 9313, + [SMALL_STATE(344)] = 9375, + [SMALL_STATE(345)] = 9445, + [SMALL_STATE(346)] = 9507, + [SMALL_STATE(347)] = 9569, + [SMALL_STATE(348)] = 9639, + [SMALL_STATE(349)] = 9709, + [SMALL_STATE(350)] = 9771, + [SMALL_STATE(351)] = 9837, + [SMALL_STATE(352)] = 9909, + [SMALL_STATE(353)] = 9977, + [SMALL_STATE(354)] = 10038, + [SMALL_STATE(355)] = 10103, + [SMALL_STATE(356)] = 10164, + [SMALL_STATE(357)] = 10233, + [SMALL_STATE(358)] = 10294, + [SMALL_STATE(359)] = 10363, + [SMALL_STATE(360)] = 10432, + [SMALL_STATE(361)] = 10497, + [SMALL_STATE(362)] = 10558, + [SMALL_STATE(363)] = 10626, + [SMALL_STATE(364)] = 10692, + [SMALL_STATE(365)] = 10758, + [SMALL_STATE(366)] = 10826, + [SMALL_STATE(367)] = 10894, + [SMALL_STATE(368)] = 10964, + [SMALL_STATE(369)] = 11032, + [SMALL_STATE(370)] = 11102, + [SMALL_STATE(371)] = 11171, + [SMALL_STATE(372)] = 11240, + [SMALL_STATE(373)] = 11298, + [SMALL_STATE(374)] = 11356, + [SMALL_STATE(375)] = 11414, + [SMALL_STATE(376)] = 11480, + [SMALL_STATE(377)] = 11548, + [SMALL_STATE(378)] = 11611, + [SMALL_STATE(379)] = 11674, + [SMALL_STATE(380)] = 11735, + [SMALL_STATE(381)] = 11798, + [SMALL_STATE(382)] = 11851, + [SMALL_STATE(383)] = 11901, + [SMALL_STATE(384)] = 11971, + [SMALL_STATE(385)] = 12023, + [SMALL_STATE(386)] = 12109, + [SMALL_STATE(387)] = 12195, + [SMALL_STATE(388)] = 12245, + [SMALL_STATE(389)] = 12331, + [SMALL_STATE(390)] = 12417, + [SMALL_STATE(391)] = 12503, + [SMALL_STATE(392)] = 12567, + [SMALL_STATE(393)] = 12655, + [SMALL_STATE(394)] = 12707, + [SMALL_STATE(395)] = 12781, + [SMALL_STATE(396)] = 12867, + [SMALL_STATE(397)] = 12943, + [SMALL_STATE(398)] = 13029, + [SMALL_STATE(399)] = 13109, + [SMALL_STATE(400)] = 13195, + [SMALL_STATE(401)] = 13281, + [SMALL_STATE(402)] = 13339, + [SMALL_STATE(403)] = 13425, + [SMALL_STATE(404)] = 13511, + [SMALL_STATE(405)] = 13579, + [SMALL_STATE(406)] = 13665, + [SMALL_STATE(407)] = 13749, + [SMALL_STATE(408)] = 13801, + [SMALL_STATE(409)] = 13887, + [SMALL_STATE(410)] = 13937, + [SMALL_STATE(411)] = 14022, + [SMALL_STATE(412)] = 14069, + [SMALL_STATE(413)] = 14116, + [SMALL_STATE(414)] = 14163, + [SMALL_STATE(415)] = 14210, + [SMALL_STATE(416)] = 14257, + [SMALL_STATE(417)] = 14342, + [SMALL_STATE(418)] = 14389, + [SMALL_STATE(419)] = 14436, + [SMALL_STATE(420)] = 14483, + [SMALL_STATE(421)] = 14530, + [SMALL_STATE(422)] = 14577, + [SMALL_STATE(423)] = 14624, + [SMALL_STATE(424)] = 14709, + [SMALL_STATE(425)] = 14756, + [SMALL_STATE(426)] = 14841, + [SMALL_STATE(427)] = 14888, + [SMALL_STATE(428)] = 14951, + [SMALL_STATE(429)] = 15004, + [SMALL_STATE(430)] = 15089, + [SMALL_STATE(431)] = 15136, + [SMALL_STATE(432)] = 15183, + [SMALL_STATE(433)] = 15256, + [SMALL_STATE(434)] = 15303, + [SMALL_STATE(435)] = 15350, + [SMALL_STATE(436)] = 15419, + [SMALL_STATE(437)] = 15466, + [SMALL_STATE(438)] = 15525, + [SMALL_STATE(439)] = 15600, + [SMALL_STATE(440)] = 15679, + [SMALL_STATE(441)] = 15746, + [SMALL_STATE(442)] = 15807, + [SMALL_STATE(443)] = 15890, + [SMALL_STATE(444)] = 15975, + [SMALL_STATE(445)] = 16022, + [SMALL_STATE(446)] = 16069, + [SMALL_STATE(447)] = 16130, + [SMALL_STATE(448)] = 16191, + [SMALL_STATE(449)] = 16238, + [SMALL_STATE(450)] = 16323, + [SMALL_STATE(451)] = 16376, + [SMALL_STATE(452)] = 16461, + [SMALL_STATE(453)] = 16508, + [SMALL_STATE(454)] = 16555, + [SMALL_STATE(455)] = 16640, + [SMALL_STATE(456)] = 16687, + [SMALL_STATE(457)] = 16736, + [SMALL_STATE(458)] = 16821, + [SMALL_STATE(459)] = 16868, + [SMALL_STATE(460)] = 16915, + [SMALL_STATE(461)] = 17000, + [SMALL_STATE(462)] = 17047, + [SMALL_STATE(463)] = 17094, + [SMALL_STATE(464)] = 17179, + [SMALL_STATE(465)] = 17226, + [SMALL_STATE(466)] = 17273, + [SMALL_STATE(467)] = 17322, + [SMALL_STATE(468)] = 17369, + [SMALL_STATE(469)] = 17458, + [SMALL_STATE(470)] = 17507, + [SMALL_STATE(471)] = 17554, + [SMALL_STATE(472)] = 17601, + [SMALL_STATE(473)] = 17648, + [SMALL_STATE(474)] = 17737, + [SMALL_STATE(475)] = 17822, + [SMALL_STATE(476)] = 17869, + [SMALL_STATE(477)] = 17916, + [SMALL_STATE(478)] = 17963, + [SMALL_STATE(479)] = 18052, + [SMALL_STATE(480)] = 18099, + [SMALL_STATE(481)] = 18146, + [SMALL_STATE(482)] = 18193, + [SMALL_STATE(483)] = 18240, + [SMALL_STATE(484)] = 18287, + [SMALL_STATE(485)] = 18334, + [SMALL_STATE(486)] = 18381, + [SMALL_STATE(487)] = 18428, + [SMALL_STATE(488)] = 18475, + [SMALL_STATE(489)] = 18522, + [SMALL_STATE(490)] = 18569, + [SMALL_STATE(491)] = 18616, + [SMALL_STATE(492)] = 18663, + [SMALL_STATE(493)] = 18748, + [SMALL_STATE(494)] = 18795, + [SMALL_STATE(495)] = 18842, + [SMALL_STATE(496)] = 18889, + [SMALL_STATE(497)] = 18936, + [SMALL_STATE(498)] = 18983, + [SMALL_STATE(499)] = 19030, + [SMALL_STATE(500)] = 19116, + [SMALL_STATE(501)] = 19166, + [SMALL_STATE(502)] = 19214, + [SMALL_STATE(503)] = 19264, + [SMALL_STATE(504)] = 19320, + [SMALL_STATE(505)] = 19404, + [SMALL_STATE(506)] = 19490, + [SMALL_STATE(507)] = 19540, + [SMALL_STATE(508)] = 19626, + [SMALL_STATE(509)] = 19676, + [SMALL_STATE(510)] = 19726, + [SMALL_STATE(511)] = 19776, + [SMALL_STATE(512)] = 19864, + [SMALL_STATE(513)] = 19916, + [SMALL_STATE(514)] = 19964, + [SMALL_STATE(515)] = 20012, + [SMALL_STATE(516)] = 20096, + [SMALL_STATE(517)] = 20180, + [SMALL_STATE(518)] = 20230, + [SMALL_STATE(519)] = 20282, + [SMALL_STATE(520)] = 20370, + [SMALL_STATE(521)] = 20458, + [SMALL_STATE(522)] = 20506, + [SMALL_STATE(523)] = 20558, + [SMALL_STATE(524)] = 20608, + [SMALL_STATE(525)] = 20696, + [SMALL_STATE(526)] = 20784, + [SMALL_STATE(527)] = 20834, + [SMALL_STATE(528)] = 20920, + [SMALL_STATE(529)] = 20965, + [SMALL_STATE(530)] = 21010, + [SMALL_STATE(531)] = 21093, + [SMALL_STATE(532)] = 21138, + [SMALL_STATE(533)] = 21183, + [SMALL_STATE(534)] = 21232, + [SMALL_STATE(535)] = 21277, + [SMALL_STATE(536)] = 21322, + [SMALL_STATE(537)] = 21367, + [SMALL_STATE(538)] = 21412, + [SMALL_STATE(539)] = 21457, + [SMALL_STATE(540)] = 21502, + [SMALL_STATE(541)] = 21587, + [SMALL_STATE(542)] = 21632, + [SMALL_STATE(543)] = 21717, + [SMALL_STATE(544)] = 21762, + [SMALL_STATE(545)] = 21847, + [SMALL_STATE(546)] = 21892, + [SMALL_STATE(547)] = 21937, + [SMALL_STATE(548)] = 21982, + [SMALL_STATE(549)] = 22027, + [SMALL_STATE(550)] = 22112, + [SMALL_STATE(551)] = 22157, + [SMALL_STATE(552)] = 22202, + [SMALL_STATE(553)] = 22287, + [SMALL_STATE(554)] = 22332, + [SMALL_STATE(555)] = 22417, + [SMALL_STATE(556)] = 22502, + [SMALL_STATE(557)] = 22547, + [SMALL_STATE(558)] = 22632, + [SMALL_STATE(559)] = 22681, + [SMALL_STATE(560)] = 22764, + [SMALL_STATE(561)] = 22847, + [SMALL_STATE(562)] = 22892, + [SMALL_STATE(563)] = 22975, + [SMALL_STATE(564)] = 23058, + [SMALL_STATE(565)] = 23143, + [SMALL_STATE(566)] = 23226, + [SMALL_STATE(567)] = 23271, + [SMALL_STATE(568)] = 23354, + [SMALL_STATE(569)] = 23439, + [SMALL_STATE(570)] = 23484, + [SMALL_STATE(571)] = 23567, + [SMALL_STATE(572)] = 23612, + [SMALL_STATE(573)] = 23657, + [SMALL_STATE(574)] = 23706, + [SMALL_STATE(575)] = 23751, + [SMALL_STATE(576)] = 23796, + [SMALL_STATE(577)] = 23841, + [SMALL_STATE(578)] = 23926, + [SMALL_STATE(579)] = 23977, + [SMALL_STATE(580)] = 24038, + [SMALL_STATE(581)] = 24109, + [SMALL_STATE(582)] = 24176, + [SMALL_STATE(583)] = 24221, + [SMALL_STATE(584)] = 24294, + [SMALL_STATE(585)] = 24339, + [SMALL_STATE(586)] = 24424, + [SMALL_STATE(587)] = 24469, + [SMALL_STATE(588)] = 24552, + [SMALL_STATE(589)] = 24629, + [SMALL_STATE(590)] = 24674, + [SMALL_STATE(591)] = 24719, + [SMALL_STATE(592)] = 24784, + [SMALL_STATE(593)] = 24829, + [SMALL_STATE(594)] = 24912, + [SMALL_STATE(595)] = 24993, + [SMALL_STATE(596)] = 25076, + [SMALL_STATE(597)] = 25121, + [SMALL_STATE(598)] = 25166, + [SMALL_STATE(599)] = 25211, + [SMALL_STATE(600)] = 25256, + [SMALL_STATE(601)] = 25301, + [SMALL_STATE(602)] = 25384, + [SMALL_STATE(603)] = 25469, + [SMALL_STATE(604)] = 25514, + [SMALL_STATE(605)] = 25597, + [SMALL_STATE(606)] = 25642, + [SMALL_STATE(607)] = 25725, + [SMALL_STATE(608)] = 25770, + [SMALL_STATE(609)] = 25815, + [SMALL_STATE(610)] = 25860, + [SMALL_STATE(611)] = 25945, + [SMALL_STATE(612)] = 26028, + [SMALL_STATE(613)] = 26073, + [SMALL_STATE(614)] = 26156, + [SMALL_STATE(615)] = 26201, + [SMALL_STATE(616)] = 26286, + [SMALL_STATE(617)] = 26331, + [SMALL_STATE(618)] = 26376, + [SMALL_STATE(619)] = 26461, + [SMALL_STATE(620)] = 26546, + [SMALL_STATE(621)] = 26591, + [SMALL_STATE(622)] = 26636, + [SMALL_STATE(623)] = 26721, + [SMALL_STATE(624)] = 26766, + [SMALL_STATE(625)] = 26849, + [SMALL_STATE(626)] = 26932, + [SMALL_STATE(627)] = 27014, + [SMALL_STATE(628)] = 27096, + [SMALL_STATE(629)] = 27178, + [SMALL_STATE(630)] = 27260, + [SMALL_STATE(631)] = 27342, + [SMALL_STATE(632)] = 27424, + [SMALL_STATE(633)] = 27474, + [SMALL_STATE(634)] = 27524, + [SMALL_STATE(635)] = 27574, + [SMALL_STATE(636)] = 27653, + [SMALL_STATE(637)] = 27702, + [SMALL_STATE(638)] = 27781, + [SMALL_STATE(639)] = 27830, + [SMALL_STATE(640)] = 27879, + [SMALL_STATE(641)] = 27964, + [SMALL_STATE(642)] = 28044, + [SMALL_STATE(643)] = 28124, + [SMALL_STATE(644)] = 28204, + [SMALL_STATE(645)] = 28284, + [SMALL_STATE(646)] = 28364, + [SMALL_STATE(647)] = 28444, + [SMALL_STATE(648)] = 28518, + [SMALL_STATE(649)] = 28590, + [SMALL_STATE(650)] = 28644, + [SMALL_STATE(651)] = 28698, + [SMALL_STATE(652)] = 28747, + [SMALL_STATE(653)] = 28806, + [SMALL_STATE(654)] = 28861, + [SMALL_STATE(655)] = 28916, + [SMALL_STATE(656)] = 28975, + [SMALL_STATE(657)] = 29034, + [SMALL_STATE(658)] = 29087, + [SMALL_STATE(659)] = 29142, + [SMALL_STATE(660)] = 29195, + [SMALL_STATE(661)] = 29248, + [SMALL_STATE(662)] = 29303, + [SMALL_STATE(663)] = 29362, + [SMALL_STATE(664)] = 29415, + [SMALL_STATE(665)] = 29470, + [SMALL_STATE(666)] = 29525, + [SMALL_STATE(667)] = 29578, + [SMALL_STATE(668)] = 29637, + [SMALL_STATE(669)] = 29690, + [SMALL_STATE(670)] = 29749, + [SMALL_STATE(671)] = 29797, + [SMALL_STATE(672)] = 29845, + [SMALL_STATE(673)] = 29893, + [SMALL_STATE(674)] = 29941, + [SMALL_STATE(675)] = 29989, + [SMALL_STATE(676)] = 30037, + [SMALL_STATE(677)] = 30084, + [SMALL_STATE(678)] = 30129, + [SMALL_STATE(679)] = 30169, + [SMALL_STATE(680)] = 30211, + [SMALL_STATE(681)] = 30251, + [SMALL_STATE(682)] = 30295, + [SMALL_STATE(683)] = 30339, + [SMALL_STATE(684)] = 30383, + [SMALL_STATE(685)] = 30425, + [SMALL_STATE(686)] = 30465, + [SMALL_STATE(687)] = 30519, + [SMALL_STATE(688)] = 30554, + [SMALL_STATE(689)] = 30591, + [SMALL_STATE(690)] = 30626, + [SMALL_STATE(691)] = 30665, + [SMALL_STATE(692)] = 30714, + [SMALL_STATE(693)] = 30752, + [SMALL_STATE(694)] = 30782, + [SMALL_STATE(695)] = 30820, + [SMALL_STATE(696)] = 30858, + [SMALL_STATE(697)] = 30881, + [SMALL_STATE(698)] = 30904, + [SMALL_STATE(699)] = 30927, + [SMALL_STATE(700)] = 30950, + [SMALL_STATE(701)] = 30973, + [SMALL_STATE(702)] = 31010, + [SMALL_STATE(703)] = 31033, + [SMALL_STATE(704)] = 31068, + [SMALL_STATE(705)] = 31091, + [SMALL_STATE(706)] = 31126, + [SMALL_STATE(707)] = 31149, + [SMALL_STATE(708)] = 31172, + [SMALL_STATE(709)] = 31195, + [SMALL_STATE(710)] = 31224, + [SMALL_STATE(711)] = 31247, + [SMALL_STATE(712)] = 31270, + [SMALL_STATE(713)] = 31293, + [SMALL_STATE(714)] = 31332, + [SMALL_STATE(715)] = 31355, + [SMALL_STATE(716)] = 31378, + [SMALL_STATE(717)] = 31401, + [SMALL_STATE(718)] = 31424, + [SMALL_STATE(719)] = 31447, + [SMALL_STATE(720)] = 31470, + [SMALL_STATE(721)] = 31491, + [SMALL_STATE(722)] = 31512, + [SMALL_STATE(723)] = 31553, + [SMALL_STATE(724)] = 31574, + [SMALL_STATE(725)] = 31613, + [SMALL_STATE(726)] = 31636, + [SMALL_STATE(727)] = 31659, + [SMALL_STATE(728)] = 31691, + [SMALL_STATE(729)] = 31723, + [SMALL_STATE(730)] = 31755, + [SMALL_STATE(731)] = 31779, + [SMALL_STATE(732)] = 31811, + [SMALL_STATE(733)] = 31843, + [SMALL_STATE(734)] = 31875, + [SMALL_STATE(735)] = 31907, + [SMALL_STATE(736)] = 31939, + [SMALL_STATE(737)] = 31971, + [SMALL_STATE(738)] = 32003, + [SMALL_STATE(739)] = 32035, + [SMALL_STATE(740)] = 32064, + [SMALL_STATE(741)] = 32093, + [SMALL_STATE(742)] = 32122, + [SMALL_STATE(743)] = 32151, + [SMALL_STATE(744)] = 32180, + [SMALL_STATE(745)] = 32201, + [SMALL_STATE(746)] = 32222, + [SMALL_STATE(747)] = 32243, + [SMALL_STATE(748)] = 32272, + [SMALL_STATE(749)] = 32293, + [SMALL_STATE(750)] = 32322, + [SMALL_STATE(751)] = 32357, + [SMALL_STATE(752)] = 32392, + [SMALL_STATE(753)] = 32427, + [SMALL_STATE(754)] = 32462, + [SMALL_STATE(755)] = 32494, + [SMALL_STATE(756)] = 32526, + [SMALL_STATE(757)] = 32552, + [SMALL_STATE(758)] = 32584, + [SMALL_STATE(759)] = 32610, + [SMALL_STATE(760)] = 32636, + [SMALL_STATE(761)] = 32662, + [SMALL_STATE(762)] = 32688, + [SMALL_STATE(763)] = 32720, + [SMALL_STATE(764)] = 32746, + [SMALL_STATE(765)] = 32772, + [SMALL_STATE(766)] = 32804, + [SMALL_STATE(767)] = 32830, + [SMALL_STATE(768)] = 32862, + [SMALL_STATE(769)] = 32888, + [SMALL_STATE(770)] = 32920, + [SMALL_STATE(771)] = 32946, + [SMALL_STATE(772)] = 32978, + [SMALL_STATE(773)] = 33007, + [SMALL_STATE(774)] = 33030, + [SMALL_STATE(775)] = 33053, + [SMALL_STATE(776)] = 33076, + [SMALL_STATE(777)] = 33105, + [SMALL_STATE(778)] = 33134, + [SMALL_STATE(779)] = 33163, + [SMALL_STATE(780)] = 33192, + [SMALL_STATE(781)] = 33221, + [SMALL_STATE(782)] = 33250, + [SMALL_STATE(783)] = 33279, + [SMALL_STATE(784)] = 33308, + [SMALL_STATE(785)] = 33337, + [SMALL_STATE(786)] = 33360, + [SMALL_STATE(787)] = 33389, + [SMALL_STATE(788)] = 33418, + [SMALL_STATE(789)] = 33447, + [SMALL_STATE(790)] = 33470, + [SMALL_STATE(791)] = 33493, + [SMALL_STATE(792)] = 33516, + [SMALL_STATE(793)] = 33545, + [SMALL_STATE(794)] = 33568, + [SMALL_STATE(795)] = 33597, + [SMALL_STATE(796)] = 33626, + [SMALL_STATE(797)] = 33655, + [SMALL_STATE(798)] = 33678, + [SMALL_STATE(799)] = 33707, + [SMALL_STATE(800)] = 33736, + [SMALL_STATE(801)] = 33765, + [SMALL_STATE(802)] = 33794, + [SMALL_STATE(803)] = 33820, + [SMALL_STATE(804)] = 33841, + [SMALL_STATE(805)] = 33854, + [SMALL_STATE(806)] = 33867, + [SMALL_STATE(807)] = 33880, + [SMALL_STATE(808)] = 33893, + [SMALL_STATE(809)] = 33914, + [SMALL_STATE(810)] = 33927, + [SMALL_STATE(811)] = 33950, + [SMALL_STATE(812)] = 33973, + [SMALL_STATE(813)] = 33996, + [SMALL_STATE(814)] = 34019, + [SMALL_STATE(815)] = 34042, + [SMALL_STATE(816)] = 34055, + [SMALL_STATE(817)] = 34074, + [SMALL_STATE(818)] = 34087, + [SMALL_STATE(819)] = 34108, + [SMALL_STATE(820)] = 34121, + [SMALL_STATE(821)] = 34140, + [SMALL_STATE(822)] = 34161, + [SMALL_STATE(823)] = 34182, + [SMALL_STATE(824)] = 34205, + [SMALL_STATE(825)] = 34227, + [SMALL_STATE(826)] = 34249, + [SMALL_STATE(827)] = 34271, + [SMALL_STATE(828)] = 34289, + [SMALL_STATE(829)] = 34307, + [SMALL_STATE(830)] = 34329, + [SMALL_STATE(831)] = 34351, + [SMALL_STATE(832)] = 34369, + [SMALL_STATE(833)] = 34387, + [SMALL_STATE(834)] = 34405, + [SMALL_STATE(835)] = 34417, + [SMALL_STATE(836)] = 34435, + [SMALL_STATE(837)] = 34453, + [SMALL_STATE(838)] = 34475, + [SMALL_STATE(839)] = 34497, + [SMALL_STATE(840)] = 34515, + [SMALL_STATE(841)] = 34527, + [SMALL_STATE(842)] = 34547, + [SMALL_STATE(843)] = 34569, + [SMALL_STATE(844)] = 34581, + [SMALL_STATE(845)] = 34599, + [SMALL_STATE(846)] = 34615, + [SMALL_STATE(847)] = 34627, + [SMALL_STATE(848)] = 34645, + [SMALL_STATE(849)] = 34657, + [SMALL_STATE(850)] = 34669, + [SMALL_STATE(851)] = 34681, + [SMALL_STATE(852)] = 34703, + [SMALL_STATE(853)] = 34725, + [SMALL_STATE(854)] = 34743, + [SMALL_STATE(855)] = 34755, + [SMALL_STATE(856)] = 34777, + [SMALL_STATE(857)] = 34799, + [SMALL_STATE(858)] = 34819, + [SMALL_STATE(859)] = 34833, + [SMALL_STATE(860)] = 34847, + [SMALL_STATE(861)] = 34860, + [SMALL_STATE(862)] = 34879, + [SMALL_STATE(863)] = 34890, + [SMALL_STATE(864)] = 34909, + [SMALL_STATE(865)] = 34924, + [SMALL_STATE(866)] = 34943, + [SMALL_STATE(867)] = 34956, + [SMALL_STATE(868)] = 34969, + [SMALL_STATE(869)] = 34988, + [SMALL_STATE(870)] = 35001, + [SMALL_STATE(871)] = 35020, + [SMALL_STATE(872)] = 35033, + [SMALL_STATE(873)] = 35052, + [SMALL_STATE(874)] = 35063, + [SMALL_STATE(875)] = 35076, + [SMALL_STATE(876)] = 35089, + [SMALL_STATE(877)] = 35108, + [SMALL_STATE(878)] = 35127, + [SMALL_STATE(879)] = 35146, + [SMALL_STATE(880)] = 35165, + [SMALL_STATE(881)] = 35178, + [SMALL_STATE(882)] = 35191, + [SMALL_STATE(883)] = 35210, + [SMALL_STATE(884)] = 35229, + [SMALL_STATE(885)] = 35248, + [SMALL_STATE(886)] = 35267, + [SMALL_STATE(887)] = 35286, + [SMALL_STATE(888)] = 35301, + [SMALL_STATE(889)] = 35314, + [SMALL_STATE(890)] = 35327, + [SMALL_STATE(891)] = 35340, + [SMALL_STATE(892)] = 35351, + [SMALL_STATE(893)] = 35364, + [SMALL_STATE(894)] = 35377, + [SMALL_STATE(895)] = 35390, + [SMALL_STATE(896)] = 35409, + [SMALL_STATE(897)] = 35422, + [SMALL_STATE(898)] = 35435, + [SMALL_STATE(899)] = 35449, + [SMALL_STATE(900)] = 35463, + [SMALL_STATE(901)] = 35477, + [SMALL_STATE(902)] = 35487, + [SMALL_STATE(903)] = 35501, + [SMALL_STATE(904)] = 35517, + [SMALL_STATE(905)] = 35531, + [SMALL_STATE(906)] = 35547, + [SMALL_STATE(907)] = 35561, + [SMALL_STATE(908)] = 35575, + [SMALL_STATE(909)] = 35591, + [SMALL_STATE(910)] = 35605, + [SMALL_STATE(911)] = 35621, + [SMALL_STATE(912)] = 35635, + [SMALL_STATE(913)] = 35651, + [SMALL_STATE(914)] = 35661, + [SMALL_STATE(915)] = 35675, + [SMALL_STATE(916)] = 35691, + [SMALL_STATE(917)] = 35707, + [SMALL_STATE(918)] = 35723, + [SMALL_STATE(919)] = 35739, + [SMALL_STATE(920)] = 35755, + [SMALL_STATE(921)] = 35769, + [SMALL_STATE(922)] = 35785, + [SMALL_STATE(923)] = 35799, + [SMALL_STATE(924)] = 35815, + [SMALL_STATE(925)] = 35831, + [SMALL_STATE(926)] = 35845, + [SMALL_STATE(927)] = 35859, + [SMALL_STATE(928)] = 35873, + [SMALL_STATE(929)] = 35889, + [SMALL_STATE(930)] = 35903, + [SMALL_STATE(931)] = 35917, + [SMALL_STATE(932)] = 35931, + [SMALL_STATE(933)] = 35945, + [SMALL_STATE(934)] = 35961, + [SMALL_STATE(935)] = 35977, + [SMALL_STATE(936)] = 35989, + [SMALL_STATE(937)] = 36005, + [SMALL_STATE(938)] = 36021, + [SMALL_STATE(939)] = 36031, + [SMALL_STATE(940)] = 36045, + [SMALL_STATE(941)] = 36057, + [SMALL_STATE(942)] = 36073, + [SMALL_STATE(943)] = 36089, + [SMALL_STATE(944)] = 36105, + [SMALL_STATE(945)] = 36119, + [SMALL_STATE(946)] = 36135, + [SMALL_STATE(947)] = 36151, + [SMALL_STATE(948)] = 36167, + [SMALL_STATE(949)] = 36183, + [SMALL_STATE(950)] = 36197, + [SMALL_STATE(951)] = 36211, + [SMALL_STATE(952)] = 36221, + [SMALL_STATE(953)] = 36237, + [SMALL_STATE(954)] = 36253, + [SMALL_STATE(955)] = 36269, + [SMALL_STATE(956)] = 36285, + [SMALL_STATE(957)] = 36301, + [SMALL_STATE(958)] = 36310, + [SMALL_STATE(959)] = 36323, + [SMALL_STATE(960)] = 36332, + [SMALL_STATE(961)] = 36341, + [SMALL_STATE(962)] = 36354, + [SMALL_STATE(963)] = 36363, + [SMALL_STATE(964)] = 36372, + [SMALL_STATE(965)] = 36381, + [SMALL_STATE(966)] = 36390, + [SMALL_STATE(967)] = 36399, + [SMALL_STATE(968)] = 36408, + [SMALL_STATE(969)] = 36421, + [SMALL_STATE(970)] = 36434, + [SMALL_STATE(971)] = 36443, + [SMALL_STATE(972)] = 36454, + [SMALL_STATE(973)] = 36463, + [SMALL_STATE(974)] = 36476, + [SMALL_STATE(975)] = 36489, + [SMALL_STATE(976)] = 36502, + [SMALL_STATE(977)] = 36515, + [SMALL_STATE(978)] = 36528, + [SMALL_STATE(979)] = 36541, + [SMALL_STATE(980)] = 36554, + [SMALL_STATE(981)] = 36567, + [SMALL_STATE(982)] = 36578, + [SMALL_STATE(983)] = 36587, + [SMALL_STATE(984)] = 36600, + [SMALL_STATE(985)] = 36609, + [SMALL_STATE(986)] = 36622, + [SMALL_STATE(987)] = 36635, + [SMALL_STATE(988)] = 36648, + [SMALL_STATE(989)] = 36661, + [SMALL_STATE(990)] = 36674, + [SMALL_STATE(991)] = 36687, + [SMALL_STATE(992)] = 36696, + [SMALL_STATE(993)] = 36709, + [SMALL_STATE(994)] = 36722, + [SMALL_STATE(995)] = 36735, + [SMALL_STATE(996)] = 36744, + [SMALL_STATE(997)] = 36753, + [SMALL_STATE(998)] = 36764, + [SMALL_STATE(999)] = 36777, + [SMALL_STATE(1000)] = 36786, + [SMALL_STATE(1001)] = 36799, + [SMALL_STATE(1002)] = 36810, + [SMALL_STATE(1003)] = 36823, + [SMALL_STATE(1004)] = 36836, + [SMALL_STATE(1005)] = 36849, + [SMALL_STATE(1006)] = 36860, + [SMALL_STATE(1007)] = 36873, + [SMALL_STATE(1008)] = 36886, + [SMALL_STATE(1009)] = 36897, + [SMALL_STATE(1010)] = 36910, + [SMALL_STATE(1011)] = 36923, + [SMALL_STATE(1012)] = 36936, + [SMALL_STATE(1013)] = 36949, + [SMALL_STATE(1014)] = 36962, + [SMALL_STATE(1015)] = 36975, + [SMALL_STATE(1016)] = 36988, + [SMALL_STATE(1017)] = 36999, + [SMALL_STATE(1018)] = 37008, + [SMALL_STATE(1019)] = 37021, + [SMALL_STATE(1020)] = 37034, + [SMALL_STATE(1021)] = 37047, + [SMALL_STATE(1022)] = 37060, + [SMALL_STATE(1023)] = 37073, + [SMALL_STATE(1024)] = 37084, + [SMALL_STATE(1025)] = 37097, + [SMALL_STATE(1026)] = 37110, + [SMALL_STATE(1027)] = 37123, + [SMALL_STATE(1028)] = 37134, + [SMALL_STATE(1029)] = 37147, + [SMALL_STATE(1030)] = 37156, + [SMALL_STATE(1031)] = 37165, + [SMALL_STATE(1032)] = 37178, + [SMALL_STATE(1033)] = 37187, + [SMALL_STATE(1034)] = 37200, + [SMALL_STATE(1035)] = 37213, + [SMALL_STATE(1036)] = 37226, + [SMALL_STATE(1037)] = 37239, + [SMALL_STATE(1038)] = 37252, + [SMALL_STATE(1039)] = 37265, + [SMALL_STATE(1040)] = 37274, + [SMALL_STATE(1041)] = 37283, + [SMALL_STATE(1042)] = 37296, + [SMALL_STATE(1043)] = 37309, + [SMALL_STATE(1044)] = 37322, + [SMALL_STATE(1045)] = 37335, + [SMALL_STATE(1046)] = 37348, + [SMALL_STATE(1047)] = 37357, + [SMALL_STATE(1048)] = 37366, + [SMALL_STATE(1049)] = 37379, + [SMALL_STATE(1050)] = 37388, + [SMALL_STATE(1051)] = 37401, + [SMALL_STATE(1052)] = 37414, + [SMALL_STATE(1053)] = 37427, + [SMALL_STATE(1054)] = 37440, + [SMALL_STATE(1055)] = 37453, + [SMALL_STATE(1056)] = 37466, + [SMALL_STATE(1057)] = 37479, + [SMALL_STATE(1058)] = 37492, + [SMALL_STATE(1059)] = 37505, + [SMALL_STATE(1060)] = 37518, + [SMALL_STATE(1061)] = 37531, + [SMALL_STATE(1062)] = 37544, + [SMALL_STATE(1063)] = 37554, + [SMALL_STATE(1064)] = 37562, + [SMALL_STATE(1065)] = 37572, + [SMALL_STATE(1066)] = 37582, + [SMALL_STATE(1067)] = 37592, + [SMALL_STATE(1068)] = 37600, + [SMALL_STATE(1069)] = 37610, + [SMALL_STATE(1070)] = 37618, + [SMALL_STATE(1071)] = 37628, + [SMALL_STATE(1072)] = 37638, + [SMALL_STATE(1073)] = 37648, + [SMALL_STATE(1074)] = 37658, + [SMALL_STATE(1075)] = 37668, + [SMALL_STATE(1076)] = 37678, + [SMALL_STATE(1077)] = 37686, + [SMALL_STATE(1078)] = 37696, + [SMALL_STATE(1079)] = 37706, + [SMALL_STATE(1080)] = 37716, + [SMALL_STATE(1081)] = 37726, + [SMALL_STATE(1082)] = 37734, + [SMALL_STATE(1083)] = 37744, + [SMALL_STATE(1084)] = 37754, + [SMALL_STATE(1085)] = 37764, + [SMALL_STATE(1086)] = 37772, + [SMALL_STATE(1087)] = 37782, + [SMALL_STATE(1088)] = 37790, + [SMALL_STATE(1089)] = 37800, + [SMALL_STATE(1090)] = 37810, + [SMALL_STATE(1091)] = 37820, + [SMALL_STATE(1092)] = 37830, + [SMALL_STATE(1093)] = 37838, + [SMALL_STATE(1094)] = 37848, + [SMALL_STATE(1095)] = 37858, + [SMALL_STATE(1096)] = 37868, + [SMALL_STATE(1097)] = 37878, + [SMALL_STATE(1098)] = 37886, + [SMALL_STATE(1099)] = 37894, + [SMALL_STATE(1100)] = 37904, + [SMALL_STATE(1101)] = 37914, + [SMALL_STATE(1102)] = 37924, + [SMALL_STATE(1103)] = 37934, + [SMALL_STATE(1104)] = 37944, + [SMALL_STATE(1105)] = 37954, + [SMALL_STATE(1106)] = 37964, + [SMALL_STATE(1107)] = 37974, + [SMALL_STATE(1108)] = 37982, + [SMALL_STATE(1109)] = 37992, + [SMALL_STATE(1110)] = 38000, + [SMALL_STATE(1111)] = 38010, + [SMALL_STATE(1112)] = 38020, + [SMALL_STATE(1113)] = 38030, + [SMALL_STATE(1114)] = 38040, + [SMALL_STATE(1115)] = 38050, + [SMALL_STATE(1116)] = 38060, + [SMALL_STATE(1117)] = 38070, + [SMALL_STATE(1118)] = 38080, + [SMALL_STATE(1119)] = 38090, + [SMALL_STATE(1120)] = 38100, + [SMALL_STATE(1121)] = 38110, + [SMALL_STATE(1122)] = 38120, + [SMALL_STATE(1123)] = 38130, + [SMALL_STATE(1124)] = 38140, + [SMALL_STATE(1125)] = 38150, + [SMALL_STATE(1126)] = 38160, + [SMALL_STATE(1127)] = 38170, + [SMALL_STATE(1128)] = 38180, + [SMALL_STATE(1129)] = 38188, + [SMALL_STATE(1130)] = 38198, + [SMALL_STATE(1131)] = 38206, + [SMALL_STATE(1132)] = 38214, + [SMALL_STATE(1133)] = 38224, + [SMALL_STATE(1134)] = 38234, + [SMALL_STATE(1135)] = 38244, + [SMALL_STATE(1136)] = 38254, + [SMALL_STATE(1137)] = 38262, + [SMALL_STATE(1138)] = 38272, + [SMALL_STATE(1139)] = 38282, + [SMALL_STATE(1140)] = 38292, + [SMALL_STATE(1141)] = 38302, + [SMALL_STATE(1142)] = 38312, + [SMALL_STATE(1143)] = 38322, + [SMALL_STATE(1144)] = 38332, + [SMALL_STATE(1145)] = 38340, + [SMALL_STATE(1146)] = 38350, + [SMALL_STATE(1147)] = 38360, + [SMALL_STATE(1148)] = 38370, + [SMALL_STATE(1149)] = 38380, + [SMALL_STATE(1150)] = 38390, + [SMALL_STATE(1151)] = 38400, + [SMALL_STATE(1152)] = 38408, + [SMALL_STATE(1153)] = 38418, + [SMALL_STATE(1154)] = 38428, + [SMALL_STATE(1155)] = 38438, + [SMALL_STATE(1156)] = 38448, + [SMALL_STATE(1157)] = 38458, + [SMALL_STATE(1158)] = 38468, + [SMALL_STATE(1159)] = 38478, + [SMALL_STATE(1160)] = 38486, + [SMALL_STATE(1161)] = 38494, + [SMALL_STATE(1162)] = 38504, + [SMALL_STATE(1163)] = 38514, + [SMALL_STATE(1164)] = 38524, + [SMALL_STATE(1165)] = 38534, + [SMALL_STATE(1166)] = 38544, + [SMALL_STATE(1167)] = 38554, + [SMALL_STATE(1168)] = 38564, + [SMALL_STATE(1169)] = 38574, + [SMALL_STATE(1170)] = 38584, + [SMALL_STATE(1171)] = 38594, + [SMALL_STATE(1172)] = 38604, + [SMALL_STATE(1173)] = 38614, + [SMALL_STATE(1174)] = 38624, + [SMALL_STATE(1175)] = 38634, + [SMALL_STATE(1176)] = 38644, + [SMALL_STATE(1177)] = 38654, + [SMALL_STATE(1178)] = 38664, + [SMALL_STATE(1179)] = 38674, + [SMALL_STATE(1180)] = 38684, + [SMALL_STATE(1181)] = 38692, + [SMALL_STATE(1182)] = 38702, + [SMALL_STATE(1183)] = 38710, + [SMALL_STATE(1184)] = 38720, + [SMALL_STATE(1185)] = 38728, + [SMALL_STATE(1186)] = 38738, + [SMALL_STATE(1187)] = 38748, + [SMALL_STATE(1188)] = 38758, + [SMALL_STATE(1189)] = 38766, + [SMALL_STATE(1190)] = 38776, + [SMALL_STATE(1191)] = 38786, + [SMALL_STATE(1192)] = 38796, + [SMALL_STATE(1193)] = 38806, + [SMALL_STATE(1194)] = 38816, + [SMALL_STATE(1195)] = 38826, + [SMALL_STATE(1196)] = 38836, + [SMALL_STATE(1197)] = 38844, + [SMALL_STATE(1198)] = 38854, + [SMALL_STATE(1199)] = 38864, + [SMALL_STATE(1200)] = 38874, + [SMALL_STATE(1201)] = 38884, + [SMALL_STATE(1202)] = 38892, + [SMALL_STATE(1203)] = 38902, + [SMALL_STATE(1204)] = 38910, + [SMALL_STATE(1205)] = 38920, + [SMALL_STATE(1206)] = 38930, + [SMALL_STATE(1207)] = 38940, + [SMALL_STATE(1208)] = 38950, + [SMALL_STATE(1209)] = 38960, + [SMALL_STATE(1210)] = 38970, + [SMALL_STATE(1211)] = 38980, + [SMALL_STATE(1212)] = 38990, + [SMALL_STATE(1213)] = 39000, + [SMALL_STATE(1214)] = 39010, + [SMALL_STATE(1215)] = 39020, + [SMALL_STATE(1216)] = 39027, + [SMALL_STATE(1217)] = 39034, + [SMALL_STATE(1218)] = 39041, + [SMALL_STATE(1219)] = 39048, + [SMALL_STATE(1220)] = 39055, + [SMALL_STATE(1221)] = 39062, + [SMALL_STATE(1222)] = 39069, + [SMALL_STATE(1223)] = 39076, + [SMALL_STATE(1224)] = 39083, + [SMALL_STATE(1225)] = 39090, + [SMALL_STATE(1226)] = 39097, + [SMALL_STATE(1227)] = 39104, + [SMALL_STATE(1228)] = 39111, + [SMALL_STATE(1229)] = 39118, + [SMALL_STATE(1230)] = 39125, + [SMALL_STATE(1231)] = 39132, + [SMALL_STATE(1232)] = 39139, + [SMALL_STATE(1233)] = 39146, + [SMALL_STATE(1234)] = 39153, + [SMALL_STATE(1235)] = 39160, + [SMALL_STATE(1236)] = 39167, + [SMALL_STATE(1237)] = 39174, + [SMALL_STATE(1238)] = 39181, + [SMALL_STATE(1239)] = 39188, + [SMALL_STATE(1240)] = 39195, + [SMALL_STATE(1241)] = 39202, + [SMALL_STATE(1242)] = 39209, + [SMALL_STATE(1243)] = 39216, + [SMALL_STATE(1244)] = 39223, + [SMALL_STATE(1245)] = 39230, + [SMALL_STATE(1246)] = 39237, + [SMALL_STATE(1247)] = 39244, + [SMALL_STATE(1248)] = 39251, + [SMALL_STATE(1249)] = 39258, + [SMALL_STATE(1250)] = 39265, + [SMALL_STATE(1251)] = 39272, + [SMALL_STATE(1252)] = 39279, + [SMALL_STATE(1253)] = 39286, + [SMALL_STATE(1254)] = 39293, + [SMALL_STATE(1255)] = 39300, + [SMALL_STATE(1256)] = 39307, + [SMALL_STATE(1257)] = 39314, + [SMALL_STATE(1258)] = 39321, + [SMALL_STATE(1259)] = 39328, + [SMALL_STATE(1260)] = 39335, + [SMALL_STATE(1261)] = 39342, + [SMALL_STATE(1262)] = 39349, + [SMALL_STATE(1263)] = 39356, + [SMALL_STATE(1264)] = 39363, + [SMALL_STATE(1265)] = 39370, + [SMALL_STATE(1266)] = 39377, + [SMALL_STATE(1267)] = 39384, + [SMALL_STATE(1268)] = 39391, + [SMALL_STATE(1269)] = 39398, + [SMALL_STATE(1270)] = 39405, + [SMALL_STATE(1271)] = 39412, + [SMALL_STATE(1272)] = 39419, + [SMALL_STATE(1273)] = 39426, + [SMALL_STATE(1274)] = 39433, + [SMALL_STATE(1275)] = 39440, + [SMALL_STATE(1276)] = 39447, + [SMALL_STATE(1277)] = 39454, + [SMALL_STATE(1278)] = 39461, + [SMALL_STATE(1279)] = 39468, + [SMALL_STATE(1280)] = 39475, + [SMALL_STATE(1281)] = 39482, + [SMALL_STATE(1282)] = 39489, + [SMALL_STATE(1283)] = 39496, + [SMALL_STATE(1284)] = 39503, + [SMALL_STATE(1285)] = 39510, + [SMALL_STATE(1286)] = 39517, + [SMALL_STATE(1287)] = 39524, + [SMALL_STATE(1288)] = 39531, + [SMALL_STATE(1289)] = 39538, + [SMALL_STATE(1290)] = 39545, + [SMALL_STATE(1291)] = 39552, + [SMALL_STATE(1292)] = 39559, + [SMALL_STATE(1293)] = 39566, + [SMALL_STATE(1294)] = 39573, + [SMALL_STATE(1295)] = 39580, + [SMALL_STATE(1296)] = 39587, + [SMALL_STATE(1297)] = 39594, + [SMALL_STATE(1298)] = 39601, + [SMALL_STATE(1299)] = 39608, + [SMALL_STATE(1300)] = 39615, + [SMALL_STATE(1301)] = 39622, + [SMALL_STATE(1302)] = 39629, + [SMALL_STATE(1303)] = 39636, + [SMALL_STATE(1304)] = 39643, + [SMALL_STATE(1305)] = 39650, + [SMALL_STATE(1306)] = 39657, + [SMALL_STATE(1307)] = 39664, + [SMALL_STATE(1308)] = 39671, }; static TSParseActionEntry ts_parse_actions[] = { @@ -58427,1336 +57986,1317 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(347), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(197), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(382), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(821), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(825), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1237), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1080), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1069), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(74), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(175), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(40), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1088), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1096), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1067), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1110), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(124), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(227), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(45), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(69), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(876), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1334), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(880), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(216), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(953), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(122), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(126), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(126), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(163), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(138), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(950), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(945), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(539), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(539), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1054), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(349), - [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 53), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 53), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 53), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 53), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 78), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 78), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 78), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 78), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 64), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 64), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 64), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 64), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 83), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 83), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 33), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 33), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 33), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 33), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 78), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 78), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 78), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 78), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 71), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 71), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 71), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 71), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 69), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 69), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 69), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 69), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 62), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 62), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 88), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 88), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(43), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(754), - [711] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(697), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(129), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(697), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(99), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(146), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 24), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 24), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 92), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 92), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 55), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 55), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 46), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 46), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 83), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 83), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 33), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 33), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 78), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 78), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 78), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 78), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 46), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 46), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 13), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 13), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 88), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 88), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 18), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 18), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 47), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 47), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 44), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 44), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 21), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 21), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 27), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 27), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 27), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 27), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 75), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 75), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 64), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 64), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 26), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 26), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 25), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 25), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 69), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 69), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 82), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 82), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 22), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 22), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 71), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 71), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 70), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 70), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 40), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 40), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 79), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 79), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(105), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(191), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 90), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 90), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 86), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 86), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 85), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 85), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 39), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 39), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 37), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 38), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 43), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 14), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 30), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 30), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 16), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 16), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 16), REDUCE(sym_object_pattern, 3, .production_id = 17), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 17), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 65), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 67), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 15), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 68), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 37), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 80), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 37), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 41), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 41), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 66), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 66), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 36), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 36), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 38), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 42), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 42), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 43), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 45), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 45), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 16), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 16), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 28), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 28), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 59), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 59), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 34), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 34), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 65), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 15), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 49), REDUCE(sym_assignment_expression, 3, .production_id = 14), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 49), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 67), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 35), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 35), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 68), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 66), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 66), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 49), REDUCE(sym_assignment_expression, 3, .production_id = 37), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 37), REDUCE(sym_assignment_expression, 3, .production_id = 37), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 37), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 72), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 72), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 57), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 57), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 77), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 77), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 81), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 81), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 53), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 16), REDUCE(sym_object_pattern, 3, .production_id = 17), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 17), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 37), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 50), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(966), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(755), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(178), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(684), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(950), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(945), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(832), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1054), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(682), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 63), SHIFT_REPEAT(690), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 16), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 17), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 16), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 93), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 93), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 89), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 89), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 40), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 40), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 88), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 88), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 69), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 69), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1054), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 84), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 84), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 74), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 74), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 51), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 51), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 78), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 78), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 31), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 31), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 31), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 31), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(79), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(874), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(786), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 58), SHIFT_REPEAT(828), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 58), SHIFT_REPEAT(81), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 58), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 58), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 58), SHIFT_REPEAT(828), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 17), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 32), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1306), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(94), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 60), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(854), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(114), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 29), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 29), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(906), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(907), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(76), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 17), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(191), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(824), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 57), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(711), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(653), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(652), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 48), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 19), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1160), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(692), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 28), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1111), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 48), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 48), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 18), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 50), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 76), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 73), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 61), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 52), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 48), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 52), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 52), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2714] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 52), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(31), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(344), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(376), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(803), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(818), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1090), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1140), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1002), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(82), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(147), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1149), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(41), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1150), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1165), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1005), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1008), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1188), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(90), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(109), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(228), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(46), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(70), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(885), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1231), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(886), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(218), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(948), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(143), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(143), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(142), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(135), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(949), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(950), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(833), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(535), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(535), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1025), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 17), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 17), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 17), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 17), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 86), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 86), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 81), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 81), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 81), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 81), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 70), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 70), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 81), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 81), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 91), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 91), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 91), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 91), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 65), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 65), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 65), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 65), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 63), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 63), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(82), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 74), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 74), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 74), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 74), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 35), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 35), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 35), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 35), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(741), + [699] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(694), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(178), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(694), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(115), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(171), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 26), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 26), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 95), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 95), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 48), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 48), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 81), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 81), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 73), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 73), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 17), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 17), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 65), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 65), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 78), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 78), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 85), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 85), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 35), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 35), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 27), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 27), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 90), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 90), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 81), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 81), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 57), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 57), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 56), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 56), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 86), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 86), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 91), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 91), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 74), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 74), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 25), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 25), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 28), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 28), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 24), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 24), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 48), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 48), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 46), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 46), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 29), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 29), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 29), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 29), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 49), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 49), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 42), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 42), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 82), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 82), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(104), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 88), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 88), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 93), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 93), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(165), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 89), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 89), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 32), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 32), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 39), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 40), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 39), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 18), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 18), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 18), REDUCE(sym_object_pattern, 3, .production_id = 19), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 19), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 83), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 45), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 66), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 69), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 39), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 68), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 75), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 75), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 67), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 67), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 69), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 68), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 67), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 67), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 66), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 60), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 60), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 30), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 30), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 18), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 18), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 47), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 47), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 45), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 44), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 44), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 39), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 39), REDUCE(sym_assignment_expression, 3, .production_id = 39), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 39), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 58), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 58), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 37), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 37), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 36), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 36), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 40), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 80), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 80), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 84), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 84), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 38), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 38), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 39), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 17), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 18), REDUCE(sym_object_pattern, 3, .production_id = 19), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 19), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 52), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [1606] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), SHIFT(996), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(951), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(749), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(167), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(680), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(949), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(950), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(841), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1025), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(679), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 64), SHIFT_REPEAT(689), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 18), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 19), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 18), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 87), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 87), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 96), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 96), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 92), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 92), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 53), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 53), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 81), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 81), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1025), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 70), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 70), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 77), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 77), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 42), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 42), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 91), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 91), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 33), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 33), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 33), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 33), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(87), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(863), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(774), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 59), SHIFT_REPEAT(816), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 59), SHIFT_REPEAT(88), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 59), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 59), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 59), SHIFT_REPEAT(816), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), SHIFT(648), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), SHIFT(501), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 19), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(836), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(98), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 34), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1217), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(127), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 61), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 31), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 31), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(899), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(906), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(83), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(821), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 19), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(165), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 58), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(690), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 30), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 21), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 50), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(651), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(652), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(703), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 50), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 50), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1148), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1187), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 52), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 54), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 50), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 76), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 62), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 79), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 54), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2649] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 54), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 54), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 064fa76e..56a34687 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -103,7 +103,7 @@ export { import1 as name1, import2 as name2, nameN } from 'foo'; (export_statement (function (formal_parameters) (statement_block))) (export_statement - (function (identifier) (formal_parameters) (statement_block))) + (function_declaration (identifier) (formal_parameters) (statement_block))) (export_statement (export_clause (export_specifier (identifier) (identifier)))) (export_statement